forked from bepsvpt/secure-headers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 855 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
{
"name": "bepsvpt/secure-headers",
"description": "Add security related headers to HTTP response. The package includes Service Providers for easy Laravel integration.",
"keywords": ["laravel", "header", "hsts", "hpkp", "csp", "https"],
"homepage": "https://github.com/BePsvPT/secure-headers",
"license": "MIT",
"authors": [
{
"name": "BePsvPT",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"illuminate/support": "^5.1",
"paragonie/csp-builder": "^2.0",
"paragonie/hpkp-builder": "^0.1"
},
"require-dev": {
"codeclimate/php-test-reporter": "^0.4",
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Bepsvpt\\SecureHeaders\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}