-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
59 lines (59 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "superbig/craft3-templateselect",
"description": "A fieldtype that allows you to select a template from a dropdown.",
"type": "craft-plugin",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"template select"
],
"support": {
"docs": "https://github.com/sjelfull/craft3-templateselect/blob/master/README.md",
"issues": "https://github.com/sjelfull/craft3-templateselect/issues"
},
"license": "MIT",
"authors": [
{
"name": "Superbig",
"homepage": "https://superbig.co"
}
],
"require": {
"craftcms/cms": "^5.0.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"superbig\\templateselect\\": "src/"
}
},
"extra": {
"name": "Template Select",
"handle": "template-select",
"schemaVersion": "4.0.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/sjelfull/craft3-templateselect/master/CHANGELOG.md",
"class": "superbig\\templateselect\\TemplateSelect"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}