railken / mangadex
v0.1.3
2019-01-05 14:53 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ~6.0
- illuminate/support: ^5.5
- railken/bag: ^1.0
- symfony/cache: ^4.2
- wa72/htmlpagedom: ^1.3
Requires (Dev)
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2024-11-06 10:43:42 UTC
README
Mangadex scraper
Requirements
PHP 7.1 and later.
Installation
You can install it via Composer by typing the following command:
composer require railken/mangadex
Usage
use Railken\Mangadex\MangadexApi; $api = new MangadexApi(); $result = $api ->search() ->includeTags(['Action', 'Adventure']) ->excludeTags(['Samurai']) ->status('Ongoing') ->name('a') ->artist('a') ->page(2) ->get();