summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-19 09:37:43 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-19 09:37:43 +0200
commit9ef5dd42461c2d629c30c7ebb439bf9a3368edb0 (patch)
treec1a3f2d9fcbdb09f881e4ae889d25ef3ff42f32b /composer.json
parent7e20ebe8e9752e1a281f61a4625c31ab6c7b86b4 (diff)
php-guzzlehttp-guzzle6: 6.2.1 (backported from Fedora)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..218c247
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,41 @@
+{
+ "name": "guzzlehttp/guzzle",
+ "type": "library",
+ "description": "Guzzle is a PHP HTTP client library",
+ "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
+ "homepage": "http://guzzlephp.org/",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ }
+ ],
+ "require": {
+ "php": ">=5.5",
+ "guzzlehttp/psr7": "^1.3.1",
+ "guzzlehttp/promises": "^1.0"
+ },
+ "require-dev": {
+ "ext-curl": "*",
+ "phpunit/phpunit": "^4.0",
+ "psr/log": "^1.0"
+ },
+ "autoload": {
+ "files": ["src/functions_include.php"],
+ "psr-4": {
+ "GuzzleHttp\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "GuzzleHttp\\Tests\\": "tests/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.2-dev"
+ }
+ }
+}