From 0225dea780121ab9c9dda8e853aec671fbaab4e9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 8 Dec 2016 07:12:15 +0100 Subject: php-guzzlehttp-promises: 1.3.0 (backported from Fedora) --- composer.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } + } +} -- cgit