-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (39 loc) · 1.02 KB
/
composer.json
File metadata and controls
40 lines (39 loc) · 1.02 KB
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
{
"name": "christoph-kluge/reactphp-http-response-compression-middleware",
"description": "A response compression middleware for the ReactPHP HTTP-Server",
"license": "MIT",
"authors": [
{
"name": "Christoph Kluge",
"email": "work@christoph-kluge.eu"
}
],
"autoload": {
"psr-4": {
"Sikei\\React\\Http\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sikei\\React\\Tests\\Http\\Middleware\\": "tests/"
}
},
"require": {
"php": ">=5.6.0",
"psr/http-message": "^1.0",
"react/promise": "^2.5",
"clue/zlib-react": "^0.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8.10||^5.0",
"react/http": "dev-master",
"ringcentral/psr7": "^1.2"
},
"scripts": {
"ensure-installed": "composer install --ansi -n -q",
"unit": [
"@ensure-installed",
"phpunit --colors=always -c phpunit.xml.dist"
]
}
}