From ccdc145b40fd4348eceeaf216e7d3f5f53fc9743 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 22 Jan 2020 16:55:03 +0100 Subject: update to 2.2.2 rename to php-laminas-diactoros2 install to /usr/share/php/Laminas/Diactoros2 raise dependency on PHP 7.1 add dependency on psr/http-factory switch to phpunit7 --- composer-factory.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 composer-factory.json (limited to 'composer-factory.json') diff --git a/composer-factory.json b/composer-factory.json new file mode 100644 index 0000000..7a15318 --- /dev/null +++ b/composer-factory.json @@ -0,0 +1,27 @@ +{ + "name": "http-interop/http-factory-tests", + "description": "Unit tests for HTTP factories", + "keywords": [ + "psr-7", + "psr-17", + "http", + "factory", + "test" + ], + "license": "MIT", + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "require": { + "psr/http-factory": "^1.0", + "phpunit/phpunit": "^6.5 || ^7.0" + }, + "autoload": { + "psr-4": { + "Interop\\Http\\Factory\\": "test/" + } + } +} -- cgit