-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
45 lines (45 loc) · 1.4 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
43
44
45
{
"name": "lewisjenkins/craft-dynamic-fields",
"description": "Populate Craft fields with dynamic data using the power of Twig.",
"type": "craft-plugin",
"version": "5.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft dynamic fields",
"lj dynamic fields"
],
"support": {
"docs": "https://github.com/lewisjenkins/craft-dynamic-fields/blob/master/README.md",
"issues": "https://github.com/lewisjenkins/craft-dynamic-fields/issues",
"email": "lewis@lj.io"
},
"license": "proprietary",
"authors": [
{
"name": "Lewis Jenkins",
"homepage": "https://lj.io"
}
],
"require": {
"craftcms/cms": "^5.0.0"
},
"autoload": {
"psr-4": {
"lewisjenkins\\craftdynamicfields\\": "src/"
}
},
"extra": {
"name": "LJ Dynamic Fields",
"handle": "craft-dynamic-fields",
"developer": "Lewis Jenkins",
"developerUrl": "https://lj.io",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/lewisjenkins/craft-dynamic-fields/master/CHANGELOG.md",
"documentationUrl": "https://github.com/lewisjenkins/craft-dynamic-fields/blob/master/README.md",
"class": "lewisjenkins\\craftdynamicfields\\CraftDynamicFields"
}
}