forked from neos/neos-development-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.doctum.php
28 lines (25 loc) · 826 Bytes
/
.doctum.php
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
26
27
28
<?php
declare(strict_types=1);
use Doctum\Doctum;
use Doctum\RemoteRepository\GitHubRemoteRepository;
use Symfony\Component\Finder\Finder;
$iterator = Finder::create()
->files()
->name('*.php')
->path('/Classes/')
->in(__DIR__);
return new Doctum($iterator, [
'title' => 'Neos CMS',
'base_url' => 'https://neos.github.io/',
'favicon' => 'https://www.neos.io/favicon-32x32.png',
'language' => 'en',
'remote_repository' => new GitHubRemoteRepository('neos/neos-development-collection', __DIR__),
'footer_link' => [
'href' => 'https://www.neos.io',
'rel' => 'noreferrer noopener',
'target' => '_blank',
'before_text' => 'Learn more about the',
'link_text' => 'Neos Content Application Platform',
'after_text' => 'if you like!',
]
]);