mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
31 lines
774 B
PHP
31 lines
774 B
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
require __DIR__ . '/sami-checkout.conf.php';
|
|
|
|
$config['versions'] = Sami\Version\GitVersionCollection::create(__DIR__ . '/../')
|
|
/*
|
|
This would be nice, but currently causes various problems that need
|
|
debugging.
|
|
->addFromTags('release-3.0.*')
|
|
->add('develop-olympus', '3.0-next (olympus)')
|
|
->addFromTags('release-3.1.*')
|
|
->add('develop-ascraeus', '3.1-next (ascraeus)')
|
|
->add('develop')
|
|
*/
|
|
->add('develop-olympus')
|
|
->add('develop-ascraeus')
|
|
;
|
|
|
|
return new Sami\Sami($iterator, $config);
|