-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 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
46
47
{
"name" : "kodicms/cms",
"description" : "The KodiCMS CMS on Kohana framework.",
"keywords" : ["framework", "kohana", "cms", "kodicms"],
"type" : "project",
"homepage" : "https://github.com/butschster/kodicms",
"authors": [
{
"name" : "Kohana",
"homepage" : "http://kohanaframework.com",
"role" : "Developer"
},
{
"name" : "Pavel Buchnev",
"email" : "[email protected]",
"role" : "Project maintainer"
}
],
"scripts": {
"post-install-cmd": [
"php minion vendor:publish",
"php minion cache:clear"
],
"post-update-cmd": [
"php minion vendor:publish",
"php minion cache:clear"
],
"post-create-project-cmd": [
"php minion vendor:publish"
]
},
"minimum-stability" : "dev",
"require": {
"php" : ">=5.4.0",
"kodicms/core" : "dev-master"
},
"config": {
"vendor-dir" : "vendor",
"preferred-install" : "dist"
},
"extra": {
"installer-paths" : {
"cms/plugins/{$name}" : ["type:kodicms-plugin"],
"vendor/{$vendor}/modules/{$name}" : ["type:kohana-module"]
}
}
}