kolenchuk / bookwrapper

用于 https://github.com/Chubik/phpdevtest/ 的 API 包装器

安装: 2

依赖: 0

建议: 0

安全: 0

星星: 0

关注者: 0

分支: 0

公开问题: 0

类型:package

dev-master 2019-06-17 10:16 UTC

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