summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-12-08 07:12:15 +0100
committerRemi Collet <fedora@famillecollet.com>2016-12-08 07:12:15 +0100
commit0225dea780121ab9c9dda8e853aec671fbaab4e9 (patch)
tree6b7817932a88f1aff1fbad1b7c5decdc403dbcfa /composer.json
parent01e4adbc5ed68c4621c3a978716ea365d9fa4d93 (diff)
php-guzzlehttp-promises: 1.3.0 (backported from Fedora)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..f13844b
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,31 @@
+{
+ "name": "guzzlehttp/promises",
+ "type": "library",
+ "description": "Guzzle promises library",
+ "keywords": ["promise"],
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ }
+ ],
+ "require": {
+ "php": ">=5.5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Promise\\": "src/"
+ },
+ "files": ["src/functions_include.php"]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ }
+}