Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/php-http/httplug
HTTPlug, the HTTP client abstraction for PHP
https://github.com/php-http/httplug
http http-client httpclient php psr-18
Last synced: 3 days ago
JSON representation
HTTPlug, the HTTP client abstraction for PHP
- Host: GitHub
- URL: https://github.com/php-http/httplug
- Owner: php-http
- License: mit
- Created: 2015-04-25T15:56:07.000Z (over 9 years ago)
- Default Branch: 2.x
- Last Pushed: 2024-09-23T13:25:15.000Z (3 months ago)
- Last Synced: 2024-10-29T19:19:52.687Z (about 1 month ago)
- Topics: http, http-client, httpclient, php, psr-18
- Language: PHP
- Homepage: http://httplug.io
- Size: 190 KB
- Stars: 2,570
- Watchers: 33
- Forks: 39
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-http - HTTPlug - http/httplug) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/php-http/httplug) (Programming Languages / PHP)
README
# HTTPlug
[![Latest Version](https://img.shields.io/github/release/php-http/httplug.svg?style=flat-square)](https://github.com/php-http/httplug/releases)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
[![Build Status](https://github.com/php-http/httplug/actions/workflows/ci.yml/badge.svg)](https://github.com/php-http/httplug/actions/workflows/ci.yml)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/php-http/httplug.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-http/httplug)
[![Quality Score](https://img.shields.io/scrutinizer/g/php-http/httplug.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-http/httplug)
[![Total Downloads](https://img.shields.io/packagist/dt/php-http/httplug.svg?style=flat-square)](https://packagist.org/packages/php-http/httplug)[![Email](https://img.shields.io/badge/[email protected]?style=flat-square)](mailto:[email protected])
**HTTPlug, the HTTP client abstraction for PHP.**
## Intro
HTTP client standard built on [PSR-7](http://www.php-fig.org/psr/psr-7/) HTTP
messages. The HttpAsyncClient defines an asynchronous HTTP client for PHP.This package also provides a synchronous HttpClient interface with the same
method signature as the [PSR-18](http://www.php-fig.org/psr/psr-18/) client.
For synchronous requests, we recommend using PSR-18 directly.## History
HTTPlug is the official successor of the [ivory http adapter](https://github.com/egeloen/ivory-http-adapter).
HTTPlug is a predecessor of [PSR-18](http://www.php-fig.org/psr/psr-18/)## Install
Via Composer
``` bash
$ composer require php-http/httplug
```## Documentation
Please see the [official documentation](http://docs.php-http.org).
## Testing
``` bash
$ composer test
```## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.