krzysiej 0aaf337889 Update search to website changes (#1)
Co-authored-by: Krzysztof Płaczek <krzysztofplaczek@techtube.pl>
Reviewed-on: #1
2025-10-03 15:21:57 +02:00
2025-10-03 15:21:57 +02:00
2022-05-23 20:36:28 +02:00

Installation

Place this in the composer.json.

{
  "repositories": [{
    "type": "composer",
    "url": "https://satis.techtube.pl"
  }]
}

Then execute to get latest version:

composer require techtube/bookinfo

or this to get specific version:

composer require techtube/bookinfo:"1.0.4"

Usage

To get information about the book by the link:

<?php

include_once 'vendor/autoload.php';

$searcher = new \Techtube\Bookinfo\BookFinder();
$data = $searcher->byUrl('https://lubimyczytac.pl/ksiazka/5008411/oni');

print_r($data);

To search the book by phrase:

<?php

include_once 'vendor/autoload.php';

$searcher = new \Techtube\Bookinfo\BookFinder();
$data = $searcher->search('jack reacher');

print_r($data);
Description
No description provided
Readme 293 KiB
Languages
PHP 100%