Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guzzle/RingPHP
[DEPRECATED] Simple handler system used to power clients and servers in PHP (this project is no longer used in Guzzle 6+)
https://github.com/guzzle/RingPHP
Last synced: 24 days ago
JSON representation
[DEPRECATED] Simple handler system used to power clients and servers in PHP (this project is no longer used in Guzzle 6+)
- Host: GitHub
- URL: https://github.com/guzzle/RingPHP
- Owner: guzzle
- License: mit
- Archived: true
- Created: 2014-09-03T20:52:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-07-31T15:55:57.000Z (over 5 years ago)
- Last Synced: 2024-10-29T19:18:30.190Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 497 KB
- Stars: 841
- Watchers: 21
- Forks: 63
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- php-awesome - RingPHP
README
=======
RingPHP
=======Provides a simple API and specification that abstracts away the details of HTTP
into a single PHP function. RingPHP be used to power HTTP clients and servers
through a PHP function that accepts a request hash and returns a response hash
that is fulfilled using a `promise `_,
allowing RingPHP to support both synchronous and asynchronous workflows.By abstracting the implementation details of different HTTP clients and
servers, RingPHP allows you to utilize pluggable HTTP clients and servers
without tying your application to a specific implementation... code-block:: php
'GET',
'uri' => '/',
'headers' => [
'host' => ['www.google.com'],
'x-foo' => ['baz']
]
]);$response->then(function (array $response) {
echo $response['status'];
});$response->wait();
RingPHP is inspired by Clojure's `Ring `_,
which, in turn, was inspired by Python's WSGI and Ruby's Rack. RingPHP is
utilized as the handler layer in `Guzzle `_ 5.0+ to send
HTTP requests.Documentation
-------------See http://ringphp.readthedocs.org/ for the full online documentation.