-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.19 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "cloudgrayau/csp",
"description": "Content Security Policy manager for Craft CMS",
"type": "craft-plugin",
"version": "1.3.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"csp",
"content-security-policy"
],
"support": {
"docs": "https://github.com/cloudgrayau/csp",
"issues": "https://github.com/cloudgrayau/csp/issues"
},
"license": "MIT",
"authors": [
{
"name": "Cloud Gray Pty Ltd",
"homepage": "https://cloudgray.com.au/"
}
],
"require": {
"craftcms/cms": "^4.0|^5.0",
"php": "^8.0|^8.2",
"cloudgrayau/utils": "^1.1"
},
"autoload": {
"psr-4": {
"cloudgrayau\\csp\\": "src/"
}
},
"extra": {
"name": "CSP",
"handle": "csp",
"developer": "Cloud Gray Pty Ltd",
"developerUrl": "https://cloudgray.com.au/",
"documentationUrl": "https://github.com/cloudgrayau/csp/blob/craft4/README.md",
"changelogUrl": "https://raw.githubusercontent.com/cloudgrayau/csp/craft4/CHANGELOG.md",
"class": "cloudgrayau\\csp\\Csp"
}
}