blob: 9909374ac85273a5c9642eb151700341c98d937c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
declare(strict_types = 1);
/**
* This file has been generated for sami/sami
*/
use Sami\Sami;
use Symfony\Component\Finder\Finder;
$iterator = Finder::create()->files()->name("*.php")->in(__DIR__."/../src");
$description = json_decode(file_get_contents(__DIR__."/../composer.json"))->description;
return new Sami(
$iterator, array(
"title" => $description,
"build_dir" => __DIR__."/../docs",
"cache_dir" => __DIR__."/../tmp"
)
);
|