2014-11-12 21:26:35 +01:00
|
|
|
<?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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-09-02 12:59:06 +02:00
|
|
|
require __DIR__ . '/doctum-checkout.conf.php';
|
2014-11-12 21:26:35 +01:00
|
|
|
|
2020-09-02 12:59:06 +02:00
|
|
|
$config['versions'] = Doctum\Version\GitVersionCollection::create(__DIR__ . '/../')
|
2019-12-26 23:00:29 +01:00
|
|
|
->add('3.3.x')
|
2015-05-28 13:19:52 +02:00
|
|
|
->add('master')
|
2014-11-12 21:26:35 +01:00
|
|
|
;
|
|
|
|
|
2020-09-02 12:59:06 +02:00
|
|
|
return new Doctum\Doctum($iterator, $config);
|