diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b845b61 --- /dev/null +++ b/composer.json @@ -0,0 +1,45 @@ +{ + "name": "webimpress/http-middleware-compatibility", + "description": "Compatibility library for Draft PSR-15 HTTP Middleware", + "type": "library", + "homepage": "https://github.com/webimpress/http-middleware-compatibility", + "license": "BSD-2-Clause", + "keywords": [ + "webimpress", + "psr-15", + "middleware" + ], + "support": { + "issues": "https://github.com/webimpress/http-middleware-compatibility/issues", + "source": "https://github.com/webimpress/http-middleware-compatibility" + }, + "config": { + "sort-packages": true + }, + "extra": { + "dependency": [ + "http-interop/http-middleware" + ] + }, + "require": { + "php": "^5.6 || ^7.0", + "http-interop/http-middleware": "^0.1.1 || ^0.2 || ^0.3 || ^0.4.1 || ^0.5", + "webimpress/composer-extra-dependency": "^0.2.2" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.23 || ^6.4.3" + }, + "autoload": { + "files": [ + "autoload/http-middleware.php" + ] + }, + "autoload-dev": { + "psr-4": { + "WebimpressTest\\HttpMiddlewareCompatibility\\": "test/" + } + }, + "scripts": { + "test": "phpunit --colors=always" + } +} |