-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "wshafer/swoole-expressive",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Westin Shafer",
"email": "shafer_w2002@yahoo.com"
}
],
"description": "Swoole + Zend Expressive Runner",
"type": "library",
"prefer-stable": true,
"require": {
"php": "^7.2",
"ext-swoole": ">=2.1.0",
"zendframework/zend-expressive": "^3.0.1",
"symfony/console": "^2.8 || ^3.0 || ^4.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpmd/phpmd" : "@stable",
"zendframework/zend-diactoros": "^1.7.1",
"phpunit/phpunit": "^6.5.4",
"squizlabs/php_codesniffer": "^2.9.1"
},
"autoload": {
"psr-4": {
"WShafer\\SwooleExpressive\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WShafer\\SwooleExpressive\\Test\\": "tests/"
}
},
"extra": {
"zf": {
"config-provider": "WShafer\\SwooleExpressive\\ConfigProvider"
}
},
"bin": [
"bin/swoole-expressive"
]
}