mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 13:54:03 +00:00
Add Doctum
This commit is contained in:
parent
dfd39722a7
commit
9dbb5822dd
4 changed files with 19 additions and 0 deletions
1
cache/DOCTUM_VERSION
vendored
Normal file
1
cache/DOCTUM_VERSION
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
5.5.2
|
||||
1
cache/PROJECT_VERSION
vendored
Normal file
1
cache/PROJECT_VERSION
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
main
|
||||
BIN
doctum.phar
Executable file
BIN
doctum.phar
Executable file
Binary file not shown.
17
doctum.php
Normal file
17
doctum.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
use Doctum\Doctum;
|
||||
use Symfony\Component\Finder\Finder;
|
||||
|
||||
$iterator = Finder::create()
|
||||
->files()
|
||||
->name('*.php')
|
||||
// ->exclude('Resources')
|
||||
// ->exclude('Tests')
|
||||
->in('src/');
|
||||
|
||||
return new Doctum($iterator, [
|
||||
'title' => 'Tenancy for Laravel API Documentation',
|
||||
'base_url' => 'https://api.tenancyforlaravel.com/',
|
||||
'favicon' => 'https://tenancyforlaravel.com/favicon.ico',
|
||||
]);
|
||||
Loading…
Add table
Add a link
Reference in a new issue