forked from JonZiemlich/codeigniter-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.27 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
{
"name" : "%%projectname%%",
"author": "%%projectauthor%%",
"description" : "%%projectdescription%%",
"repositories": [
{
"type": "package",
"package": {
"name": "avenirer/codeigniter-matches-cli",
"version": "3.0",
"type": "codeigniter-module",
"extra": {
"installer-name": "matches"
},
"source": {
"type": "git",
"url": "https://github.com/avenirer/codeigniter-matches-cli.git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=5.3.2",
"codeigniter/framework": "3.1.*",
"composer/installers": "~1.0",
"mpdf/mpdf": "*"
},
"scripts": {
"post-update-cmd": [
"npm install",
"bower install",
"grunt",
"php ./public/index.php migrate"
],
"post-install-cmd": [
"npm install",
"bower install",
"grunt",
"php ./public/index.php migrate"
]
},
"extra": {
"installer-paths": {
"application/modules/{$name}/": ["type:codeigniter-module"]
}
}
}