-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 831 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 831 Bytes
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
{
"name": "area17/twill-security-headers",
"description": "A Twill Capsule to add and handle Security Headers",
"homepage": "https://github.com/area17/twill-security-headers",
"license": "Apache-2.0",
"require": {
"php": ">=8.0",
"area17/twill": "^3.0"
},
"require-dev": {
"nunomaduro/larastan": "^2.0",
"phpstan/phpstan": "^1.8",
"orchestra/testbench": "^7.11",
"friendsofphp/php-cs-fixer": "^3.0",
"laravel/dusk": "^7.12"
},
"autoload": {
"psr-4": {
"A17\\TwillSecurityHeaders\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"A17\\TwillSecurityHeaders\\ServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"npx husky install"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}