-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 1019 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
{
"name": "webdna/dynamic-options",
"description": "A fieldtype that renders a dropdown based on twig code.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": ["craft", "cms", "craftcms", "craft-plugin", "dynamic options"],
"support": {
"docs": "https://github.com/webdna/dynamic-options/blob/master/README.md",
"issues": "https://github.com/webdna/dynamic-options/issues"
},
"license": "MIT",
"authors": [{
"name": "webdna",
"homepage": "https://webdna.co.uk"
}],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"webdna\\dynamicoptions\\": "src/"
}
},
"extra": {
"name": "Dynamic Options",
"handle": "dynamic-options",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/webdna/dynamic-options/master/CHANGELOG.md",
"class": "webdna\\dynamicoptions\\DynamicOptions"
}
}