-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
51 lines (51 loc) · 1.12 KB
/
composer.json
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
{
"name": "phly/conduit",
"description": "Middleware for PHP",
"type": "library",
"license": "MIT",
"keywords": [
"http",
"middleware"
],
"homepage": "https://github.com/phly/conduit",
"authors": [
{
"name": "Matthew Weier O'Phinney",
"email": "matthew@weierophinney.net",
"homepage": "http://mwop.net"
}
],
"support": {
"issues": "https://github.com/phly/conduit/issues",
"source": "https://github.com/phly/conduit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"require": {
"php": ">=5.4.8",
"psr/http-message": "~1.0.0",
"zendframework/zend-escaper": "~2.3@stable"
},
"require-dev": {
"phly/http": "~0.13",
"phpunit/PHPUnit": "3.7.*",
"squizlabs/php_codesniffer": "~2.0"
},
"suggest": {
"psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Conduit; e.g., phly/http"
},
"autoload": {
"psr-4": {
"Phly\\Conduit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\Conduit\\": "test/"
}
}
}