ettbrasil / zend-simple-api
There is no license information available for the latest version (0.0.3) of this package.
Request & Response @ Zend Server API
0.0.3
2018-06-06 14:04 UTC
Requires
- php: >=5.6.0
- zendframework/zend-http: ^2.7@dev
Requires (Dev)
- zendframework/zend-http: ^2.7@dev
This package is auto-updated.
Last update: 2025-03-07 22:24:51 UTC
README
ETTBrasil SimpleAPI makes it easy to send HTTP requests and to integrate with Zend Server API.
Simple interface for building requests and getting responses in XML & JSON
Installing SimpleAPI
The recommended way to install ETTBrasil SimpleAPI is through Composer.
## Install Composer
curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version of ETTBrasil SimpleAPI:
php composer.phar require ettbrasil/zend-simple-api
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
You can then later update SimpleAPI using composer:
composer.phar update