2011-02-03 05:36:03 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
Base template used by new-project to know what modules to install where & where to get them from
|
|
|
|
Structure is likely to change at some point
|
|
|
|
*/
|
|
|
|
|
|
|
|
$template = array(
|
2012-04-12 11:15:32 +02:00
|
|
|
'framework' => new Github(array(
|
2011-02-03 05:36:03 +01:00
|
|
|
'user' => 'silverstripe',
|
|
|
|
'project' => 'sapphire',
|
2012-04-12 11:15:32 +02:00
|
|
|
'branch' => FRAMEWORK_CURRENT_BRANCH
|
2011-02-03 05:36:03 +01:00
|
|
|
)),
|
|
|
|
'cms' => new Github(array(
|
|
|
|
'user' => 'silverstripe',
|
|
|
|
'project' => 'silverstripe-cms',
|
2012-04-12 11:15:32 +02:00
|
|
|
'branch' => FRAMEWORK_CURRENT_BRANCH
|
2011-02-03 05:36:03 +01:00
|
|
|
)),
|
2012-03-28 22:39:32 +02:00
|
|
|
'themes/simple' => new GithubSparse(array(
|
2011-03-31 00:31:25 +02:00
|
|
|
'user' => 'silverstripe-themes',
|
2012-03-28 22:39:32 +02:00
|
|
|
'project' => 'silverstripe-simple',
|
2012-04-12 11:15:32 +02:00
|
|
|
'branch' => FRAMEWORK_CURRENT_BRANCH,
|
2012-03-28 22:39:32 +02:00
|
|
|
'subdir' => ''
|
2011-02-03 05:36:03 +01:00
|
|
|
))
|
|
|
|
);
|
|
|
|
|