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-psr7.json | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) (limited to 'composer-psr7.json') diff --git a/composer-psr7.json b/composer-psr7.json index 83b1a99..8aa07dc 100644 --- a/composer-psr7.json +++ b/composer-psr7.json @@ -1,9 +1,12 @@ { "name": "php-http/psr7-integration-tests", "description": "Test suite for PSR7", - "license": "MIT", - "keywords": ["test", "psr-7"], + "keywords": [ + "test", + "psr-7" + ], "homepage": "http://php-http.org", + "license": "MIT", "authors": [ { "name": "Tobias Nyholm", @@ -11,16 +14,21 @@ } ], "require": { - "php": "^5.4 || ^7.0", - "psr/http-message": "^1.0", - "phpunit/phpunit": "^5.4 || ^6.0 || ^7.0" + "php": "^5.5 || ^7.0", + "phpunit/phpunit": "^5.4 || ^6.0 || ^7.0", + "psr/http-message": "^1.0" }, "require-dev": { - "zendframework/zend-diactoros": "^1.8", "guzzlehttp/psr7": "^1.4", - "slim/http": "^0.3", + "nyholm/psr7": "^1.0", "ringcentral/psr7": "^1.2", - "nyholm/psr7": "dev-master" + "slim/psr7": "dev-master", + "zendframework/zend-diactoros": "^2.1" + }, + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } }, "autoload": { "psr-4": { @@ -33,11 +41,6 @@ } }, "scripts": { - "test": "vendor/bin/phpunit" - }, - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } + "test": "phpunit" } } -- cgit