matryoshka-model/service-api
最新稳定版本:v0.3.1
Composer 安装命令:
composer require matryoshka-model/service-api
包简介
A set of utilities aimed at consuming HTTP API services
README 文档
README
Service API -----------A set of utilities aimed at consuming HTTP API services.
Community
For questions and support please visit the slack channel (get an invite here).
Installation
Install it using composer.
composer require matryoshka-model/service-api
Configuration
This library provides two factories for Zend\ServiceManager to make Zend\Http\Client and Matryoshka\Service\Api\Client\HttpApi available as services.
In order to use them in a ZF2 application register the provided factories into its configuration:
'service_manager' => [ 'factories' => [ 'Matryoshka\Service\Api\Client\HttpClient' => 'Matryoshka\Service\Api\Service\HttpClientServiceFactory', ], 'abstract_factories' => [ 'Matryoshka\Service\Api\Service\HttpApiAbstractServiceFactory', ], ],
Then, in your configuration you can add the matryoshka-httpclient and matryoshka-service-api nodes and configure them as in the following example:
'matryoshka-httpclient' => [ 'uri' => 'http://example.net/path', //base uri ... //any other options available for Zend\Http\Client ], 'matryoshka-service-api' => [ 'YourApiServiceName' => [ 'http_client' => 'Matryoshka\Service\Api\Client\HttpClient', // http client service name 'base_request' => 'Zend\Http\Request', // base request service name 'valid_status_code' => [], // Array of int code valid 'request_format' => 'json', // string json/xml 'profiler' => '', // profiler service name ], ... ],
统计信息
- 总下载量: 383
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 2
其他信息
- 授权协议: BSD-2-Clause
- 更新时间: 2014-10-31
