From b5d26de7b5678734b6fea09c0f9026e64101938b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 26 Jan 2017 15:04:44 +0100 Subject: php-react-http-client: backport --- composer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4939a69 --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "react/http-client", + "description": "Asynchronous HTTP client library.", + "keywords": ["http"], + "license": "MIT", + "require": { + "php": ">=5.4.0", + "guzzlehttp/psr7": "^1.0", + "react/socket-client": "^0.5 || ^0.4 || ^0.3", + "react/dns": "0.4.*", + "react/event-loop": "0.4.*", + "react/stream": "0.4.*", + "react/promise": "~2.2", + "evenement/evenement": "~2.0" + }, + "autoload": { + "psr-4": { + "React\\HttpClient\\": "src" + } + } +} -- cgit