-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.19 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" : "%%projectname%%",
"author": "%%author%%",
"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"
},
"scripts": {
"post-update-cmd": [
"npm install --only=dev",
"bower install --production",
"grunt"
],
"post-install-cmd": [
"npm install --only=dev",
"bower install --production",
"grunt"
]
},
"extra": {
"installer-paths": {
"application/modules/{$name}/": ["type:codeigniter-module"]
}
}
}