Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joomla-framework/http
Joomla Framework Http Package
https://github.com/joomla-framework/http
curl joomla joomla-framework php
Last synced: 5 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 (almost 12 years ago)
- Default Branch: 3.x-dev
- Last Pushed: 2024-10-08T21:11:37.000Z (3 months ago)
- Last Synced: 2025-01-08T00:02:59.872Z (5 days ago)
- Topics: curl, joomla, joomla-framework, php
- Language: PHP
- Homepage:
- Size: 5.31 MB
- Stars: 18
- Watchers: 14
- Forks: 21
- Open Issues: 2
-
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 [![Build Status](https://ci.joomla.org/api/badges/joomla-framework/http/status.svg?ref=refs/heads/3.x-dev)](https://ci.joomla.org/joomla-framework/http)
[![Latest Stable Version](https://poser.pugx.org/joomla/http/v/stable)](https://packagist.org/packages/joomla/http)
[![Total Downloads](https://poser.pugx.org/joomla/http/downloads)](https://packagist.org/packages/joomla/http)
[![Latest Unstable Version](https://poser.pugx.org/joomla/http/v/unstable)](https://packagist.org/packages/joomla/http)
[![License](https://poser.pugx.org/joomla/http/license)](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"
```