-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
40 lines (39 loc) · 1014 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
36
37
38
39
40
{
"name": "christoph-kluge/reactphp-http-cors-middleware",
"description": "A cors middleware for the ReactPHP HTTP-Server",
"license": "MIT",
"authors": [
{
"name": "Christoph Kluge",
"email": "[email protected]"
}
],
"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/http": "^1.0.0",
"react/promise": "^2.5",
"neomerx/cors-psr7": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.10||^5.0",
"ringcentral/psr7": "^1.2"
},
"scripts": {
"ensure-installed": "composer install --ansi -n -q",
"unit": [
"@ensure-installed",
"phpunit --colors=always -c phpunit.xml.dist"
]
}
}