-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
51 lines (51 loc) · 1.32 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
49
50
51
{
"name": "tuupola/cors-middleware",
"description": "PSR-7 and PSR-15 CORS middleware",
"keywords": [
"middleware",
"cors",
"psr-7",
"psr-15"
],
"homepage": "https://github.com/tuupola/cors-middleware",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "https://www.appelsiini.net/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2|^8.0",
"neomerx/cors-psr7": "^2.0|^3.0",
"psr/http-message": "^1.0.1|^2.0",
"psr/http-server-middleware": "^1.0",
"tuupola/callable-handler": "^1.0",
"tuupola/http-factory": "^1.0.2"
},
"autoload": {
"psr-4": {
"Tuupola\\Middleware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Middleware\\": "tests"
}
},
"require-dev": {
"equip/dispatch": "^2.0",
"nyholm/psr7": "^1.5",
"overtrue/phplint": "^3.0",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^8.5.30|^9.0",
"rector/rector": "^0.14.0",
"symplify/easy-coding-standard": "^11.1"
}
}