1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 11:14:04 +00:00

Add Doctum

This commit is contained in:
lukinovec 2023-04-13 06:44:47 +02:00
parent dfd39722a7
commit 9dbb5822dd
4 changed files with 19 additions and 0 deletions

1
cache/DOCTUM_VERSION vendored Normal file
View file

@ -0,0 +1 @@
5.5.2

1
cache/PROJECT_VERSION vendored Normal file
View file

@ -0,0 +1 @@
main

BIN
doctum.phar Executable file

Binary file not shown.

17
doctum.php Normal file
View 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',
]);