-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
59 lines (59 loc) · 1.7 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
52
53
54
55
56
57
58
59
{
"name": "aidantwoods/secureheaders",
"description": "A PHP class aiming to make the use of browser security features more accessible.",
"keywords": [
"content-security-policy",
"cookie",
"csp",
"headers",
"hsts",
"secure",
"secureheaders"
],
"homepage": "https://github.com/aidantwoods/SecureHeaders/wiki",
"support": {
"issues": "https://github.com/aidantwoods/secureheaders/issues",
"source": "https://github.com/aidantwoods/secureheaders"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aidan Woods",
"email": "[email protected]",
"homepage": "https://aidanwoods.com"
}
],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"Aidantwoods\\SecureHeaders\\": "src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/aidantwoods/PHP-CS-Fixer"
}
],
"suggest": {
"psr/http-message": "In case you want to use the PSR-7 adapter",
"aidantwoods/markdownphpdocs": "Install this on its own and add it to your path, to auto-generate documentation if contributing to this repo."
},
"require-dev": {
"friendsofphp/php-cs-fixer": "dev-feature/braces/position_after_return_type_hint",
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4",
"psr/http-message": "^1.0",
"zendframework/zend-diactoros": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Aidantwoods\\SecureHeaders\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}