2017-02-15 16:13:32 -05:00
|
|
|
<?php declare(strict_types=1);
|
2015-11-16 11:40:01 -05:00
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2015-11-16 11:40:01 -05:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
2015-11-16 11:40:01 -05:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* PHP version 7
|
2016-08-30 10:01:18 -04:00
|
|
|
*
|
2015-11-16 11:40:01 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2016-08-30 10:01:18 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2017-02-15 16:13:32 -05:00
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
2016-08-30 10:01:18 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2017-02-15 16:13:32 -05:00
|
|
|
* @version 4.0
|
2015-11-16 11:40:01 -05:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
2015-10-05 16:54:25 -04:00
|
|
|
|
2017-02-15 16:13:32 -05:00
|
|
|
|
2015-10-05 16:54:25 -04:00
|
|
|
return [
|
|
|
|
'anime_list' => [
|
|
|
|
'route_prefix' => '/anime',
|
|
|
|
'items' => [
|
|
|
|
'watching' => '/watching',
|
|
|
|
'plan_to_watch' => '/plan_to_watch',
|
|
|
|
'on_hold' => '/on_hold',
|
|
|
|
'dropped' => '/dropped',
|
|
|
|
'completed' => '/completed',
|
2017-01-03 21:06:49 -05:00
|
|
|
//'all' => '/all'
|
2015-10-05 16:54:25 -04:00
|
|
|
]
|
|
|
|
],
|
|
|
|
'manga_list' => [
|
|
|
|
'route_prefix' => '/manga',
|
|
|
|
'items' => [
|
|
|
|
'reading' => '/reading',
|
|
|
|
'plan_to_read' => '/plan_to_read',
|
|
|
|
'on_hold' => '/on_hold',
|
|
|
|
'dropped' => '/dropped',
|
|
|
|
'completed' => '/completed',
|
2017-01-03 21:06:49 -05:00
|
|
|
//'all' => '/all'
|
2015-10-05 16:54:25 -04:00
|
|
|
]
|
|
|
|
]
|
|
|
|
];
|