-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
44 lines (44 loc) · 1.17 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
{
"name": "firesphere/cspheaders",
"description": "Setup CSP Headers for a website",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CSP",
"Content",
"Security",
"Policies"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Simon 'Firesphere' Erkelens",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"silverstripe/framework": "^4|^5",
"silverstripe/admin": "^1|^2",
"paragonie/csp-builder": "^2.9",
"guzzlehttp/guzzle": ">=6",
"symfony/yaml": ">=4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"silverstripe/recipe-plugin": true,
"php-http/discovery": true
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}