-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.1 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
{
"name": "springtimesoft/silverstripe-csp-suite",
"description": "A set of tools for managing CSP in Silverstripe CMS projects.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CMS",
"CSP"
],
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"silverstripe/framework": "^5.2.12",
"silverstripe/admin": "^2.2",
"silverstripe/reports": "^5.2",
"silverstripeltd/silverstripe-csp": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"conflict": {
"signify-nz/silverstripe-security-headers": "*"
},
"suggest": {
"symbiote/silverstripe-queuedjobs": "Required for regular cleanup of CSP violations."
},
"autoload": {
"psr-4": {
"Springtimesoft\\CSPSuite\\": "src/",
"Springtimesoft\\CSPSuite\\Tests\\": "tests/php/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}