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 --- Makefile | 4 ++++ composer.json | 21 +++++++++++++++++++++ php-react-http-client.spec | 4 ++++ 3 files changed, 29 insertions(+) create mode 100644 Makefile create mode 100644 composer.json diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + 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" + } + } +} diff --git a/php-react-http-client.spec b/php-react-http-client.spec index 8b65269..0786545 100644 --- a/php-react-http-client.spec +++ b/php-react-http-client.spec @@ -1,3 +1,4 @@ +# remirepo spec file for php-react-http-client, from: # # Fedora spec file for php-react-http-client # @@ -180,6 +181,9 @@ exit $SCL_RETURN_CODE %changelog +* Thu Jan 26 2017 Remi Collet - 0.4.15-2 +- backport + * Wed Jan 25 2017 Shawn Iwinski - 0.4.15-2 - Minor update to SCL tests (only php55 if rhel) -- cgit