railken/mangadex

v0.1.3 2019-01-05 14:53 UTC

This package is auto-updated.

Last update: 2024-04-06 09:20:22 UTC


README

Build Status

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();