-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.04 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
{
"name": "trendyminds/visor",
"description": "A simple admin overlay to get to the relevant areas of the Craft CMS control panel",
"type": "craft-plugin",
"version": "3.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"visor",
"utility",
"dashboard"
],
"support": {
"docs": "https://github.com/trendyminds/visor/blob/master/README.md",
"issues": "https://github.com/trendyminds/visor/issues"
},
"license": "MIT",
"authors": [
{
"name": "TrendyMinds",
"homepage": "https://trendyminds.com"
}
],
"require": {
"craftcms/cms": "^3.1.20"
},
"autoload": {
"psr-4": {
"trendyminds\\visor\\": "src/"
}
},
"extra": {
"name": "Visor",
"handle": "visor",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/trendyminds/visor/master/CHANGELOG.md",
"components": {
"visorService": "trendyminds\\visor\\services\\VisorService"
},
"class": "trendyminds\\visor\\Visor"
}
}