diff options
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" } |