summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b56db26988343fc6c7ebcd71898e29c2d2dd9b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  "name": "zendframework/zend-stratigility",
  "description": "Middleware for PHP",
  "type": "library",
  "license": "BSD-3-Clause",
  "keywords": [
    "http",
    "psr-7",
    "middleware"
  ],
  "homepage": "https://github.com/zendframework/zend-stratigility",
  "support": {
    "issues": "https://github.com/zendframework/zend-stratigility/issues",
    "source": "https://github.com/zendframework/zend-stratigility"
  },
  "extra": {
    "branch-alias": {
      "dev-master": "1.3.0-dev",
      "dev-develop": "2.0.0-dev"
    }
  },
  "require": {
    "php": "^5.6 || ^7.0",
    "psr/http-message": "^1.0",
    "zendframework/zend-escaper": "^2.3",
    "http-interop/http-middleware": "^0.2.0"
  },
  "require-dev": {
    "zendframework/zend-diactoros": "^1.0",
    "phpunit/phpunit": "^5.6",
    "zendframework/zend-coding-standard": "~1.0.0"
  },
  "suggest": {
    "psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., zendframework/zend-diactoros"
  },
  "autoload": {
    "psr-4": {
      "Zend\\Stratigility\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "ZendTest\\Stratigility\\": "test/"
    }
  },
  "scripts": {
    "check": [
      "@cs-check",
      "@test"
    ],
    "upload-coverage": "coveralls -v",
    "cs-check": "phpcs --colors",
    "cs-fix": "phpcbf --colors",
    "test": "phpunit --colors=always",
    "test-coverage": "phpunit --coverage-clover clover.xml"
  }
}