forked from bepsvpt/secure-headers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.16 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.16 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
41
42
43
44
45
46
{
"name": "envatic/secure-headers",
"description": "Add security related headers to HTTP response. The package includes Service Providers for easy Laravel integration.",
"keywords": ["laravel", "header", "https", "hsts", "hpkp", "csp", "except-ct", "feature-policy", "clear-site-data", "referrer-policy", "content-security-policy"],
"homepage": "https://github.com/BePsvPT/secure-headers",
"license": "MIT",
"authors": [
{
"name": "BePsvPT",
"email": "bepsvpt@protonmail.com"
}
],
"require": {
"php": "^7.0",
"illuminate/support": "~6.0"
},
"require-dev": {
"ext-xdebug": "*",
"orchestra/testbench": "~3.1",
"phpstan/phpstan": "~0.7",
"phpunit/phpunit": "~5.7|~6.5|~7.5"
},
"autoload": {
"psr-4": {
"Bepsvpt\\SecureHeaders\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bepsvpt\\Tests\\SecureHeaders\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Bepsvpt\\SecureHeaders\\SecureHeadersServiceProvider"
]
}
}
}