blob: f8dad47bbed31f80a49a4f9f578c55b717661dba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* This file has been generated by phpmyadmin/scripts:/develdocs/build.sh
* @see https://github.com/phpmyadmin/scripts/blob/master/develdocs/sami.php
* @see https://github.com/phpmyadmin/scripts/blob/master/develdocs/build.sh
*/
use Sami\Sami;
use Symfony\Component\Finder\Finder;
$iterator = Finder::create()
->files()
->name("*.php")
->in("./src")
;
return new Sami($iterator, [
"title" => "A validating SQL lexer and parser with a focus on MySQL dialect.",
"build_dir" => "./doc/",
"cache_dir" => "./tmp"
]);
|