Welcome to mirror list, hosted at ThFree Co, Russian Federation.

doctum-config.php « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4298e1506ecaf34397c92584e1b282542532214c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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 . 'libraries');

return new Doctum($iterator, [
    'title'                => json_decode(file_get_contents($root . 'composer.json'))->description,
    'build_dir'            => $root . 'build/apidocs/',
    'cache_dir'            => $root . 'tmp/',
    'source_dir'           => $root . '/',
    'version'              => 'master',
    'remote_repository'    => new GitHubRemoteRepository('phpmyadmin/phpmyadmin', $root),
]);