-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "phpfastcgi/fastcgi-daemon",
"description": "A FastCGI daemon written in PHP",
"keywords": ["fastcgi", "server", "fast cgi", "daemon"],
"license": "MIT",
"authors": [
{
"name": "Andrew Carter",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"psr/http-message": "~1.0",
"psr/log": "~1.0",
"symfony/console": "^3.4 || ^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.2.7",
"symfony/http-foundation": "^3.4 || ^4.0",
"zendframework/zend-diactoros": "^1.8",
"nyholm/psr7-server": "^0.2",
"http-interop/http-factory-diactoros": "^1.0"
},
"autoload": {
"psr-4": {
"PHPFastCGI\\FastCGIDaemon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPFastCGI\\Test\\FastCGIDaemon\\": "test/"
}
}
}