mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
27 lines
629 B
PHP
27 lines
629 B
PHP
<?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(
|
|
'framework' => new Github(array(
|
|
'user' => 'silverstripe',
|
|
'project' => 'sapphire',
|
|
'branch' => FRAMEWORK_CURRENT_BRANCH
|
|
)),
|
|
'cms' => new Github(array(
|
|
'user' => 'silverstripe',
|
|
'project' => 'silverstripe-cms',
|
|
'branch' => FRAMEWORK_CURRENT_BRANCH
|
|
)),
|
|
'themes/simple' => new GithubSparse(array(
|
|
'user' => 'silverstripe-themes',
|
|
'project' => 'silverstripe-simple',
|
|
'branch' => FRAMEWORK_CURRENT_BRANCH,
|
|
'subdir' => ''
|
|
))
|
|
);
|
|
|