forked from am-impact/amcommand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.79 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
{
"name": "am-impact/amcommand",
"description": "Command palette in Craft.",
"type": "craft-plugin",
"version": "3.1.4",
"keywords": [
"craft",
"cms",
"craftcms",
"plugin",
"command"
],
"license": "MIT",
"authors": [
{
"name": "a&m impact",
"homepage": "http://www.am-impact.nl"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"amimpact\\commandpalette\\": "src/"
}
},
"extra": {
"name": "Command Palette",
"handle": "command-palette",
"version": "3.1.4",
"schemaVersion": "3.0.0",
"hasSettings": true,
"hasCpSection": true,
"developer": "a&m impact",
"developerUrl": "http://www.am-impact.nl",
"description": "Command palette in Craft.",
"changelogUrl": "https://raw.githubusercontent.com/am-impact/amcommand/craft3/CHANGELOG.md",
"documentationUrl": "https://github.com/am-impact/amcommand/blob/master/README.md",
"components": {
"entries": "amimpact\\commandpalette\\services\\Entries",
"general": "amimpact\\commandpalette\\services\\General",
"globals": "amimpact\\commandpalette\\services\\Globals",
"plugins": "amimpact\\commandpalette\\services\\Plugins",
"search": "amimpact\\commandpalette\\services\\Search",
"settings": "amimpact\\commandpalette\\services\\Settings",
"tasks": "amimpact\\commandpalette\\services\\Tasks",
"utilities": "amimpact\\commandpalette\\services\\Utilities",
"users": "amimpact\\commandpalette\\services\\Users"
},
"class": "amimpact\\commandpalette\\CommandPalette"
}
}