From 5aa7c4f9499135dd12162045e441f5215ee050aa Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Sun, 26 Mar 2023 18:31:50 +0200 Subject: Full working app --- php/tcpdf/scripts/doctum.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 php/tcpdf/scripts/doctum.php (limited to 'php/tcpdf/scripts/doctum.php') diff --git a/php/tcpdf/scripts/doctum.php b/php/tcpdf/scripts/doctum.php new file mode 100644 index 0000000..4a9c98b --- /dev/null +++ b/php/tcpdf/scripts/doctum.php @@ -0,0 +1,34 @@ +files() + ->name('*.php') + ->notPath('cache') + ->notPath('build') + ->notPath('fonts') + ->notPath('vendor') + ->notPath('tests') + ->notPath('examples') + ->in($rootDir); + +return new Doctum($iterator, [ + 'title' => 'TCPDF', + 'build_dir' => $rootDir . '/build', + 'cache_dir' => $rootDir . '/cache', + 'source_dir' => $rootDir, + 'remote_repository' => new GitHubRemoteRepository('tecnickcom/TCPDF', $rootDir), + 'footer_link' => [ + 'href' => 'https://github.com/tecnickcom/TCPDF#readme', + 'rel' => 'noreferrer noopener', + 'target' => '_blank', + 'before_text' => 'This documentation is for', + 'link_text' => 'TCPDF', + 'after_text' => 'the PHP library to build PDFs.', + ], +]); -- cgit v1.3.1