-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
49 lines (49 loc) · 1.38 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
{
"name": "wbrowar/craft-admin-bar",
"description": "Front-end shortcuts for clients logged into Craft CMS.",
"type": "craft-plugin",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"admin bar",
"admin-bar",
"toolbar",
"admin toolbar",
"author experience",
"ax"
],
"support": {
"docs": "https://raw.githubusercontent.com/wbrowar/craft-admin-bar/main/README.md",
"issues": "https://github.com/wbrowar/craft-admin-bar/issues"
},
"license": "MIT",
"authors": [
{
"name": "Will Browar",
"homepage": "https://wbrowar.com"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"nystudio107/craft-code-editor": "^1.0.18"
},
"autoload": {
"psr-4": {
"wbrowar\\adminbar\\": "src/"
}
},
"extra": {
"name": "Admin Bar",
"handle": "admin-bar",
"schemaVersion": "3.1.0",
"hasCpSettings": true,
"hasCpSection": false,
"developerUrl": "https://wbrowar.com",
"documentationUrl": "https://raw.githubusercontent.com/wbrowar/craft-admin-bar/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/wbrowar/craft-admin-bar/main/CHANGELOG.md",
"class": "wbrowar\\adminbar\\AdminBar"
}
}