summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-22 16:18:45 +0100
committerRemi Collet <remi@remirepo.net>2020-01-22 16:18:45 +0100
commit04e830d1232aba0ee40e03256a30076c2ee01c52 (patch)
treebe52c8a87d21637c75eec6166f2f4d00747bdf30 /composer.json
new package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json71
1 files changed, 71 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..8ed12ff
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,71 @@
+{
+ "name": "laminas/laminas-httphandlerrunner",
+ "description": "Execute PSR-15 RequestHandlerInterface instances and emit responses they generate.",
+ "license": "BSD-3-Clause",
+ "keywords": [
+ "laminas",
+ "components",
+ "mezzio",
+ "psr-7",
+ "psr-15"
+ ],
+ "homepage": "https://laminas.dev",
+ "support": {
+ "docs": "https://docs.laminas.dev/laminas-httphandlerrunner/",
+ "issues": "https://github.com/laminas/laminas-httphandlerrunner/issues",
+ "source": "https://github.com/laminas/laminas-httphandlerrunner",
+ "rss": "https://github.com/laminas/laminas-httphandlerrunner/releases.atom",
+ "chat": "https://laminas.dev/chat",
+ "forum": "https://discourse.laminas.dev"
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev",
+ "dev-develop": "1.2.x-dev"
+ },
+ "laminas": {
+ "config-provider": "Laminas\\HttpHandlerRunner\\ConfigProvider"
+ }
+ },
+ "require": {
+ "php": "^7.1",
+ "laminas/laminas-zendframework-bridge": "^1.0",
+ "psr/http-message": "^1.0",
+ "psr/http-message-implementation": "^1.0",
+ "psr/http-server-handler": "^1.0"
+ },
+ "require-dev": {
+ "laminas/laminas-coding-standard": "~1.0.0",
+ "laminas/laminas-diactoros": "^1.7 || ^2.1.1",
+ "phpunit/phpunit": "^7.0.2"
+ },
+ "autoload": {
+ "psr-4": {
+ "Laminas\\HttpHandlerRunner\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "LaminasTest\\HttpHandlerRunner\\": "test/"
+ },
+ "files": [
+ "test/TestAsset/SapiResponse.php"
+ ]
+ },
+ "scripts": {
+ "check": [
+ "@cs-check",
+ "@test"
+ ],
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
+ "test": "phpunit --colors=always",
+ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
+ },
+ "replace": {
+ "zendframework/zend-httphandlerrunner": "self.version"
+ }
+}