-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·42 lines (42 loc) · 1.38 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
{
"name": "perfectwebteam/craft-entry-section",
"description": "Allow to query the sectionName of an Entry from the GraphQL API",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft graphql",
"craft entry section"
],
"support": {
"docs": "https://github.com/perfectwebteam/craft-entry-section/blob/master/README.md",
"source": "https://github.com/perfectwebteam/craft-entry-section",
"issues": "https://github.com/perfectwebteam/craft-entry-section/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\\craftentrysection\\": "src/"
}
},
"extra": {
"name": "Entry Section",
"handle": "entry-section",
"developer": "Perfect Web Team",
"developerUrl": "https://perfectwebteam.com",
"documentationUrl": "https://github.com/perfectwebteam/craft-entry-section/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/perfectwebteam/craft-entry-section/master/CHANGELOG.md",
"class": "perfectwebteam\\craftentrysection\\CraftEntrySection"
}
}