summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-19 09:31:51 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-19 09:31:51 +0200
commitbf3baee705b84408e56dfc564b30741d4a1f233f (patch)
treeda38552c7c6516c4b6f843a62cffeb4a924fba93 /composer.json
parent690bf19d1e7202cbc9fe1ca7bf40b720d18ab852 (diff)
php-guzzlehttp-guzzle: 5.3.1
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..717b3be
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,33 @@
+{
+ "name": "guzzlehttp/guzzle",
+ "type": "library",
+ "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
+ "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.4.0",
+ "guzzlehttp/ringphp": "^1.1"
+ },
+ "require-dev": {
+ "ext-curl": "*",
+ "phpunit/phpunit": "^4.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "GuzzleHttp\\Tests\\": "tests/"
+ }
+ }
+}