-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
31 lines (31 loc) · 1.02 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
{
"name": "bairwell/middleware-cors",
"description": "A PSR-7 middleware layer for providing CORS (Cross Origin Request Security) headers and security provisions. Instead of just allowing invalid CORs requests to come through, this middleware actively blocks them after validating.",
"keywords": ["psr-7","middleware","cors","cross origin request security"],
"homepage": "https://github.com/bairwell/middleware-cors",
"license": "MIT",
"authors": [
{
"name": "Richard Bairwell",
"email": "[email protected]",
"homepage": "http://www.bairwell.com"
}
],
"type": "library",
"require": {
"php": "^7.0",
"psr/http-message": "^1.0",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.1",
"squizlabs/php_codesniffer": "^2.5",
"monolog/monolog": "^1.13"
},
"autoload": {
"psr-4": {"Bairwell\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Bairwell\\": "tests/"}
}
}