-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdoctum-config.php
More file actions
24 lines (21 loc) · 844 Bytes
/
doctum-config.php
File metadata and controls
24 lines (21 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
* This file has been generated by phpmyadmin/scripts/develdocs/build.sh
* @see https://github.com/phpmyadmin/scripts/blob/master/develdocs/doctum.php
* @see https://github.com/phpmyadmin/scripts/blob/master/develdocs/build.sh
*/
use Doctum\Doctum;
use Symfony\Component\Finder\Finder;
use Doctum\RemoteRepository\GitHubRemoteRepository;
$root = realpath(__DIR__) . '/';
$iterator = Finder::create()
->files()
->name('*.php')
->in($root . 'src');
return new Doctum($iterator, [
'title' => json_decode(file_get_contents($root . 'composer.json'))->description,
'build_dir' => $root . 'build/apidocs/',
'cache_dir' => $root . 'tmp/',
'version' => 'master',
'remote_repository' => new GitHubRemoteRepository('phpmyadmin/motranslator', $root),
]);