-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 1.38 KB
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.38 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
{
"name": "perfectwebteam/craft-graphql-security",
"description": "An assortment of security measures when using Craft CMS with GraphQL",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft graphql"
],
"support": {
"docs": "https://github.com/perfectwebteam/craft-graphql-security/blob/master/README.md",
"source": "https://github.com/perfectwebteam/craft-graphql-security",
"issues": "https://github.com/perfectwebteam/craft-graphql-security/issues"
},
"license": "MIT",
"authors": [
{
"name": "Perfect Web Team",
"homepage": "https://perfectwebteam.com"
}
],
"require": {
"craftcms/cms": "^4.0.0|^5.0.0"
},
"autoload": {
"psr-4": {
"perfectwebteam\\craftgraphqlsecurity\\": "src/"
}
},
"extra": {
"name": "GraphQL Security",
"handle": "graphql-security",
"developer": "Perfect Web Team",
"developerUrl": "https://perfectwebteam.com",
"documentationUrl": "https://github.com/perfectwebteam/craft-graphql-security/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/perfectwebteam/craft-graphql-security/master/CHANGELOG.md",
"class": "perfectwebteam\\craftgraphqlsecurity\\CraftGraphqlSecurity"
}
}