diff options
author | Remi Collet <remi@remirepo.net> | 2018-09-06 07:50:07 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-09-06 07:50:07 +0200 |
commit | 013d41c747a6a2c6e785129a7baf3f6e39317e5f (patch) | |
tree | efe6559ba8d6e84cb47fbdf5286191fabb67440a /composer-psr7.json | |
parent | e8a0a8851e32b9c2debce9e63635ddad9da64d94 (diff) |
update to 1.8.6
bundle php-http/psr7-integration-tests only used for tests
Diffstat (limited to 'composer-psr7.json')
-rw-r--r-- | composer-psr7.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/composer-psr7.json b/composer-psr7.json new file mode 100644 index 0000000..83b1a99 --- /dev/null +++ b/composer-psr7.json @@ -0,0 +1,43 @@ +{ + "name": "php-http/psr7-integration-tests", + "description": "Test suite for PSR7", + "license": "MIT", + "keywords": ["test", "psr-7"], + "homepage": "http://php-http.org", + "authors": [ + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" + } + ], + "require": { + "php": "^5.4 || ^7.0", + "psr/http-message": "^1.0", + "phpunit/phpunit": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "zendframework/zend-diactoros": "^1.8", + "guzzlehttp/psr7": "^1.4", + "slim/http": "^0.3", + "ringcentral/psr7": "^1.2", + "nyholm/psr7": "dev-master" + }, + "autoload": { + "psr-4": { + "Http\\Psr7Test\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Http\\Psr7Test\\Tests\\": "tests/" + } + }, + "scripts": { + "test": "vendor/bin/phpunit" + }, + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + } +} |