forked from AppStateESS/canopy3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.43 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
54
55
56
57
58
59
60
61
62
63
{
"require": {
"doctrine/dbal": "^3.1",
"oomphinc/composer-installers-extender": "^2.0",
"appstateess/canopy3-dashboard-setup": "^1.0",
"appstateess/canopy3-dashboard-site": "^1.0",
"appstateess/canopy3-dashboard-system": "^1.0",
"appstateess/canopy3-dashboard-user": "^1.0",
"appstateess/canopy3-theme-simple": "dev-master",
"ezyang/htmlpurifier": "^4.13"
},
"extra": {
"installer-types": [
"canopy3-theme",
"canopy3-plugin",
"canopy3-dashboard"
],
"installer-paths": {
"resources/themes/{$name}": [
"type:canopy3-theme"
],
"resources/plugins/{$name}": [
"type:canopy3-plugin"
],
"resources/dashboards/{$name}": [
"type:canopy3-dashboard"
]
}
},
"autoload": {
"psr-4": {
"Canopy3\\": "src/"
}
},
"repositories": [
{
"type": "path",
"url": "systems/dashboards/canopy3-dashboard-site"
},
{
"type": "path",
"url": "systems/dashboards/canopy3-dashboard-setup"
},
{
"type": "path",
"url": "systems/dashboards/canopy3-dashboard-system"
},
{
"type": "path",
"url": "systems/dashboards/canopy3-dashboard-user"
},
{
"type": "path",
"url": "systems/themes/canopy3-theme-simple"
}
],
"scripts": {
"post-package-install": [
"Canopy3\\SystemFactory::composerRegister"
]
},
"minimum-stability": "stable"
}