-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (34 loc) · 946 Bytes
/
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
{
"name": "today/gql-extend",
"description": "A CraftCMS plugin to extend the GraphQL scheme for entries with additional fields.",
"version": "1.0.2",
"type": "craft-plugin",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Today Design",
"homepage": "https://today.design"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TodayDesign/craftcms-gql-extend/issues?state=open",
"source": "https://github.com/developer/repo",
"docs": "https://github.com/TodayDesign/craftcms-gql-extend/blob/master/README.md"
},
"require": {
"craftcms/cms": "^3.1.0"
},
"autoload": {
"psr-4": {
"today\\gqlextend\\": "src/"
}
},
"extra": {
"handle": "gql-extend",
"name": "GqlExtend",
"documentationUrl": "https://github.com/TodayDesign/craftcms-gql-extend/blob/master/README.md",
"class": "today\\gqlextend\\GqlExtend"
}
}