-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.11 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
{
"name": "phpbg/mini-httpd",
"description": "This is a small http server framework built on top of react http. It allows to quickly build simple applications",
"type": "library",
"license": "MIT",
"keywords": [
"http",
"httpd",
"react",
"server"
],
"authors": [
{
"name": "Samuel CHEMLA",
"email": "chemla.samuel@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"ext-zlib": "*",
"ext-json": "*",
"react/http": "^1.0",
"zendframework/zend-validator": "^2.10",
"zendframework/zend-filter": "^2.8",
"psr/log": "^1.0",
"psr/http-message": "^1.0",
"react/promise": "^2.7",
"guzzlehttp/psr7": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"phpstan/phpstan": "^0.12.2"
},
"suggest": {
"wyrihaximus/react-http-middleware-session": "session handling",
"cboden/ratchet": "Websocket server"
},
"autoload": {
"psr-4": {
"PhpBg\\MiniHttpd\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml",
"phpstan": "vendor/bin/phpstan analyze -l 5 src/"
}
}