silverstripe-installer/tools/lib/template.php

33 lines
850 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(
'sapphire' => new Github(array(
'user' => 'silverstripe',
'project' => 'sapphire',
'branch' => SAPPHIRE_CURRENT_BRANCH
)),
'cms' => new Github(array(
'user' => 'silverstripe',
'project' => 'silverstripe-cms',
'branch' => SAPPHIRE_CURRENT_BRANCH
)),
'themes/blackcandy' => new GithubSparse(array(
'user' => 'silverstripe-themes',
'project' => 'silverstripe-blackcandy',
'branch' => SAPPHIRE_CURRENT_BRANCH,
'subdir' => 'blackcandy'
)),
'themes/blackcandy_blog' => new GithubSparse(array(
'user' => 'silverstripe-themes',
'project' => 'silverstripe-blackcandy',
'branch' => SAPPHIRE_CURRENT_BRANCH,
'subdir' => 'blackcandy_blog'
))
);