diff options
author | Remi Collet <remi@remirepo.net> | 2020-03-19 14:21:17 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-03-19 14:21:17 +0100 |
commit | 9ff23acc73cf76d99758457d3dc87593687a28b7 (patch) | |
tree | d86bf7ec725d515f429415dc55ac43f07709feab /composer.json | |
parent | a672df23ad9e7441ffc744b4b57691f9b065a209 (diff) |
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/composer.json b/composer.json index 1a001b2..84b435a 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "stack/builder", - "description": "Builder for stack middlewares based on HttpKernelInterface.", + "description": "Builder for stack middleware based on HttpKernelInterface.", "keywords": ["stack"], "license": "MIT", "authors": [ @@ -10,12 +10,16 @@ } ], "require": { - "php": ">=5.3.0", - "symfony/http-foundation": "~2.1|~3.0|~4.0", - "symfony/http-kernel": "~2.1|~3.0|~4.0" + "php": ">=7.2.0", + "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0", + "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0" }, "require-dev": { - "silex/silex": "~1.0" + "phpunit/phpunit": "~8.0", + "symfony/routing": "^5.0" + }, + "scripts": { + "test": "phpunit --coverage-text" }, "autoload": { "psr-0": { "Stack": "src" } |