summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 4e70459193f29072cc53aa19af5e54745d70e622 (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
{
  "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.2-dev",
      "dev-develop": "1.3-dev"
    }
  },
  "require": {
    "php": "^5.4.8 || ^7.0",
    "psr/http-message": "~1.0.0",
    "zendframework/zend-escaper": "~2.3"
  },
  "require-dev": {
    "zendframework/zend-diactoros": "~1.0",
    "phpunit/phpunit": "~4.7",
    "squizlabs/php_codesniffer": "^2.3.1"
  },
  "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/"
    }
  }
}