-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json-dist
41 lines (41 loc) · 1.27 KB
/
config.json-dist
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
{
"project" : {
"name" : "My Test Project",
"author" : "Chris Cornutt",
"projectBase" : "/tmp/projectbase",
"tasks" : [
{
"type" : "internal.param",
"value" : "git://github.com/enygma/usher.git",
"name" : "gitrepo"
},
{
"type" : "vcs.git.clone",
"repositoryPath" : "param:gitrepo",
"destinationPath": "/tmp/usher-checkout"
},
{
"type" : "internal.write",
"message" : "this is a test"
},
{
"type" : "sample"
},
{
"type" : "package.phar",
"target" : "/tmp/test.phar",
"sourceDirectory" : "/tmp/sampleapp",
"stubFile" : "index.php"
},
{
"type" : "package.composer",
"composerPath": "/Users/enygma/work/usher/bin/composer.phar",
"config" : {
"require" : {
"propel/propel" : ">=2.0.0-dev"
}
}
}
]
}
}