kolenchuk / bookwrapper
用于 https://github.com/Chubik/phpdevtest/ 的 API 包装器
dev-master
2019-06-17 10:16 UTC
Requires
- php: >=5.5
- phpunit/phpunit: ^5.7
This package is auto-updated.
Last update: 2024-09-17 22:02:12 UTC
README
针对 https://github.com/Chubik/phpdevtest/ 的测试任务
安装
安装此扩展的首选方式是通过 composer。
composer require kolenchuk/bookwrapper:dev-master
##基本使用示例
<?php require_once 'vendor/autoload.php'; $wrapper = new \BookApiWrapper\BookApiWrapper(); print_r($wrapper->getAuthors()); print_r($wrapper->getBooks()); print_r($wrapper->getAuthorBooks(1));