From 45898c463e64bf1ae76f7993b06cc64b14af93c7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 10 Jan 2020 13:30:53 +0100 Subject: new package --- composer.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } +} -- cgit