forked from spicywebau/craft-fieldlabels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1006 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
36
37
38
{
"name": "spicyweb/craft-fieldlabels",
"description": "Override Craft CMS field labels and instructions in the field layout designer",
"version": "1.0.7",
"type": "craft-plugin",
"keywords": [
"craftcms",
"craft-plugin"
],
"license": "MIT",
"authors": [
{
"name": "Spicy Web",
"homepage": "https://spicyweb.com.au"
}
],
"homepage": "https://spicyweb.com.au/",
"support": {
"email": "craft@spicyweb.com.au",
"issues": "https://github.com/spicywebau/craft-fieldlabels/issues"
},
"require": {
"craftcms/cms": "^3.1.20"
},
"autoload": {
"psr-4": {
"spicyweb\\fieldlabels\\": "src/"
}
},
"extra": {
"handle": "fieldlabels",
"name": "Field Labels",
"schemaVersion": "1.0.0",
"class": "spicyweb\\fieldlabels\\Plugin",
"changelogUrl": "https://github.com/spicywebau/craft-fieldlabels/blob/master/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-fieldlabels/archive/master.zip"
}
}