pathfindermediagroup / api-library
此包已被废弃,不再维护。未建议替代包。
一个帮助与PMG API交互的库
1.3.2
2020-07-14 17:25 UTC
Requires
- php: >=7.2.0
- ext-curl: *
- ext-json: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.14
- phpunit/phpunit: ^7
README
通过Composer安装
composer require pathfindermediagroup/api-library
使用方法
<?php $auth = new \PathfinderMediaGroup\ApiLibrary\Auth\TokenAuth('yourapitokenhere'); $api = new \PathfinderMediaGroup\ApiLibrary\Api\SetApi($auth); $allSets = $api->getAll(); $specificSet = $api->get(1); $setSearch = $api->search('ebon armor');