joomla / http
Joomla HTTP Package
Fund package maintenance!
joomla
community.joomla.org/sponsorship-campaigns.html
Installs: 544 488
Dependents: 15
Suggesters: 1
Security: 0
Stars: 17
Watchers: 15
Forks: 21
Open Issues: 2
Type:joomla-package
Requires
- php: ^8.1.0
- composer/ca-bundle: ^1.3.5
- joomla/uri: ^3.0
- laminas/laminas-diactoros: ^2.24.0
- psr/http-client: ^1.0
- psr/http-message: ^1.0
Requires (Dev)
- joomla/test: ^3.0
- phan/phan: ^5.4.2
- phpstan/phpstan: ^1.10.7
- phpunit/phpunit: ^9.5.28
- squizlabs/php_codesniffer: ^3.7.2
Suggests
- ext-curl: To use cURL for HTTP connections
This package is auto-updated.
Last update: 2024-10-08 21:11:40 UTC
README
The HTTP package includes a 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
.
{ "require": { "joomla/http": "~3.0" } }
Alternatively, you can simply run the following from the command line:
composer require joomla/http "~3.0"
If you want to include the test sources and docs, use
composer require --prefer-source joomla/http "~3.0"