railken / kissmanga
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 2
Open Issues: 0
pkg:composer/railken/kissmanga
Requires
- guzzlehttp/guzzle: ~6.0
- illuminate/support: ^5.5
- kyranrana/cloudflare-bypass: 2.0.*
- railken/bag: ^1.0
- symfony/cache: ^4.2
- tunaabutbul/cloudflare-middleware: ^1.2
- wa72/htmlpagedom: ^1.3
Requires (Dev)
- codeclimate/php-test-reporter: ^0.4.4
- friendsofphp/php-cs-fixer: ^2.8.1
- phpstan/phpstan: ^0.9.2
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-09-29 01:45:30 UTC
README
Kissmanga Scraper is a php library that permits to search manga and download scans from kissmanga.com
Requirements
PHP 7.0.0 or later.
Composer
You can install it via Composer by typing the following command:
composer require railken/kissmanga
Dependencies
Getting Started
Simple usage looks like:
# Creating a new instance of manager $manager = new \Railken\Kissmanga\Kissmanga(); # Searching a manga $results = $manager ->search() ->name('One Piece') ->author('Oda Eiichiro') ->genres('include', ['Action', 'Drama', 'Historical']) ->completed(0) ->get(); # Retrieving all info about a manga $manga_uid = "One-Piece"; $manga = $manager ->resource($manga_uid) ->get(); # Retrieving all scans for a given manga, volume and chapter $chapter_id = 1; $manga_uid = "One-Piece"; $scans = $manager ->scan($manga_uid, $chapter_id) ->get(); # Retrieving last updates $results = $manager->releases()->page(1)->get();
License
Open-source software licensed under the MIT license.
Copyright
All the manga are copyrighted to their respective author. Please buy the manga if it's available in your country.