2020-09-01 09:02:17 +02: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
$iterator = Symfony\Component\Finder\Finder::create()
|
|
|
|
->files()
|
|
|
|
->name('*.php')
|
|
|
|
->in(__DIR__ . '/../phpBB/')
|
|
|
|
->notPath('#^cache/#')
|
|
|
|
->notPath('#^develop/#')
|
|
|
|
->notPath('#^ext/#')
|
|
|
|
->notPath('#^vendor/#')
|
|
|
|
->notPath('data');
|
|
|
|
|
2020-09-08 11:08:35 +02:00
|
|
|
// This variable will be used and changed in doctum-all.conf.php
|
|
|
|
$config = [
|
2020-09-01 09:02:17 +02:00
|
|
|
'title' => 'phpBB API Documentation',
|
|
|
|
'build_dir' => __DIR__ . '/api/output/%version%',
|
|
|
|
'cache_dir' => __DIR__ . '/api/cache/%version%',
|
2020-09-08 11:08:35 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
return new Doctum\Doctum($iterator, $config);
|