https://github.com/joomla-framework/http
Joomla Framework Http Package
https://github.com/joomla-framework/http
curl joomla joomla-framework php
Last synced: 2 days ago
JSON representation
Joomla Framework Http Package
- Host: GitHub
- URL: https://github.com/joomla-framework/http
- Owner: joomla-framework
- License: gpl-2.0
- Created: 2013-02-24T03:22:55.000Z (about 12 years ago)
- Default Branch: 3.x-dev
- Last Pushed: 2025-04-20T10:09:03.000Z (28 days ago)
- Last Synced: 2025-04-20T11:22:44.841Z (28 days ago)
- Topics: curl, joomla, joomla-framework, php
- Language: PHP
- Homepage:
- Size: 5.32 MB
- Stars: 18
- Watchers: 13
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# The HTTP Package [](https://ci.joomla.org/joomla-framework/http)
[](https://packagist.org/packages/joomla/http)
[](https://packagist.org/packages/joomla/http)
[](https://packagist.org/packages/joomla/http)
[](https://packagist.org/packages/joomla/http)The HTTP package includes a [PSR-18](http://www.php-fig.org/psr/psr-18/) compatible HTTP client to facilitate RESTful HTTP requests
over a variety of transport protocols.## Requirements
* PHP 8.1 or later
## Installation via Composer
Add `"joomla/http": "~3.0"` to the require block in your composer.json and then run `composer install`.
```json
{
"require": {
"joomla/http": "~3.0"
}
}
```Alternatively, you can simply run the following from the command line:
```sh
composer require joomla/http "~3.0"
```If you want to include the test sources and docs, use
```sh
composer require --prefer-source joomla/http "~3.0"
```