-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed documentation tool to "Sami" -> Requird some modification in …
…the build scripts
- Loading branch information
ruff
committed
Nov 21, 2020
1 parent
eb3ae9b
commit f145ddd
Showing
130 changed files
with
59,971 additions
and
236,249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
use Sami\Sami; | ||
use Sami\RemoteRepository\GitHubRemoteRepository; | ||
use Sami\Version\GitVersionCollection; | ||
use Symfony\Component\Finder\Finder; | ||
|
||
$iterator = Finder::create() | ||
->files() | ||
->name('*.php') | ||
->exclude('entities') | ||
->in($dir = dirname(__FILE__) . '/../src'); | ||
|
||
return new Sami($iterator, array( | ||
'title' => 'horstoeko/zugferd API', | ||
'build_dir' => dirname(__FILE__) . '/../doc', | ||
'cache_dir' => dirname(__FILE__) . '/../cache', | ||
'include_parent_data' => false, | ||
)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
use Sami\Sami; | ||
use Sami\RemoteRepository\GitHubRemoteRepository; | ||
use Sami\Version\GitVersionCollection; | ||
use Symfony\Component\Finder\Finder; | ||
|
||
$iterator = Finder::create() | ||
->files() | ||
->name('*.php') | ||
->exclude('entities') | ||
->in($dir = dirname(__FILE__) . '/../src'); | ||
|
||
return new Sami($iterator, array( | ||
'title' => 'horstoeko/zugferd API', | ||
'build_dir' => dirname(__FILE__) . '/doc', | ||
'cache_dir' => dirname(__FILE__) . '/cache', | ||
'include_parent_data' => false, | ||
)); |
Oops, something went wrong.