-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "ether/sidebarentrytypes",
"description": "Easily switch between entry types in entries section",
"type": "craft-plugin",
"version": "2.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"sidebar entry types"
],
"support": {
"docs": "https://github.com/ethercreative/sidebar-entrytypes",
"issues": "https://github.com/ethercreative/sidebar-entrytypes/issues"
},
"license": "MIT",
"authors": [
{
"name": "Ether Creative",
"homepage": "https://ethercreative.co.uk"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"ether\\sidebarentrytypes\\": "src/"
}
},
"extra": {
"name": "Sidebar Entry Types",
"handle": "sidebarentrytypes",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/ethercreative/sidebar-entrytypes/blob/master/CHANGELOG.md",
"class": "ether\\sidebarentrytypes\\SidebarEntryTypes"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}