Download the PHP package esi/api without Composer
On this page you can find all versions of the php package esi/api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package api
Short Description A simple wrapper/builder using Guzzle for base API clients.
License MIT
Informations about the package api
Esi\Api - A simple wrapper/builder using Guzzle for base API clients.
About
Documentation will be a bit lackluster, and the unit tests need a lot of work. With that being said, I created this library more for use in my own projects that center around an API service; to decouple a lot of the logic that would be repeated in each API service library, to its own library.
It has a long way to go, but it should be relatively stable.
Features
- Builds around
guzzle/guzzle
as the HTTP Client. - Cache's requests via
Kevinrob/guzzle-cache-middleware
. - Can retry requets on a connection or server error via the Guzzle Retry Middleware.
Client::enableRetryAttempts()
to instruct the client to attempt retries.Client::disableRetryAttempts()
to disable attempt retries.Client::setMaxRetryAttempts()
to set the maximum number of retries.
- Can pass along headers in
Client::build()
to be 'persistent' headers, i.e. headers sent with every request. - One function that handles sending a request:
Client::send()
It currently does not support async requests and pooling. Just your regular, good 'ol, standard requests.
Example
Requirements
- PHP 8.2.0 or above.
Submitting bugs and feature requests
Bugs and feature requests are tracked on GitHub
Issues are the quickest way to report a bug. If you find a bug or documentation error, please check the following first:
- That there is not an Issue already open concerning the bug
- That the issue has not already been addressed (within closed Issues, for example)
Contributing
See CONTRIBUTING.
Author
Eric Sizemore - https://www.secondversion.com
License
Esi\Api is licensed under the MIT License - see the LICENSE.md
file for details
All versions of api with dependencies
guzzlehttp/guzzle Version ^7.0
kevinrob/guzzle-cache-middleware Version ^5.1
symfony/cache Version ^7.0