File tree Expand file tree Collapse file tree 5 files changed +39
-4
lines changed Expand file tree Collapse file tree 5 files changed +39
-4
lines changed Original file line number Diff line number Diff line change
1
+ * .php text eol =lf
2
+ /docs export-ignore
3
+ /examples export-ignore
4
+ /tests export-ignore
5
+ .gitattributes export-ignore
6
+ .gitignore export-ignore
7
+ .scrutinizer.yml export-ignore
8
+ .travis.yml export-ignore
9
+ README.md export-ignore
10
+ README export-ignore
11
+ CREDITS export-ignore
12
+ RELEASE- * export-ignore
13
+ package.xml export-ignore
14
+ packagexmlsetup.php export-ignore
15
+ extrasetup.php export-ignore
Original file line number Diff line number Diff line change 1
1
source : ../src
2
2
3
- destination : PEAR2_Net_RouterOS__ApiGen_Documentation
3
+ destination : Reference/ApiGen/Doc
4
4
5
5
extensions : php
6
6
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ PROJECT_LOGO =
52
52
# If a relative path is entered, it will be relative to the location
53
53
# where doxygen was started. If left blank the current directory will be used.
54
54
55
- OUTPUT_DIRECTORY = " PEAR2_Net_RouterOS__Doxygen_Documentation "
55
+ OUTPUT_DIRECTORY = " Reference/Doxygen/Doc "
56
56
57
57
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
58
58
# 4096 sub-directories (in 2 levels) under the output directory of each output
Original file line number Diff line number Diff line change 3
3
<title >PEAR2_Net_RouterOS documentation</title >
4
4
<parser >
5
5
<default-package-name >PEAR2_Net_RouterOS</default-package-name >
6
- <target >PEAR2_Net_RouterOS__PhpDocumentor_Cache </target >
6
+ <target >Reference/PhpDocumentor/Cache </target >
7
7
<extensions >
8
8
<extension >php</extension >
9
9
</extensions >
12
12
<directory >../src/PEAR2/Net/RouterOS</directory >
13
13
</files >
14
14
<transformer >
15
- <target >PEAR2_Net_RouterOS__PhpDocumentor_Documentation </target >
15
+ <target >Reference/PhpDocumentor/Doc </target >
16
16
</transformer >
17
17
</phpdoc >
Original file line number Diff line number Diff line change
1
+ <?php
2
+ use Sami \Sami ;
3
+ use Sami \Version \GitVersionCollection ;
4
+ use Symfony \Component \Finder \Finder ;
5
+
6
+ return new Sami (
7
+ Finder::create ()
8
+ ->files ()
9
+ ->name ('*.php ' )
10
+ ->exclude ('docs ' )
11
+ ->exclude ('examples ' )
12
+ ->exclude ('tests ' )
13
+ ->in ($ dir = dirname (__DIR__ )),
14
+ array (
15
+ 'title ' => 'PEAR2_Net_RouterOS documentation ' ,
16
+ 'build_dir ' => __DIR__ . '/Reference/Sami/Doc ' ,
17
+ 'cache_dir ' => __DIR__ . '/Reference/Sami/Cache ' ,
18
+ 'default_opened_level ' => 1
19
+ )
20
+ );
You can’t perform that action at this time.
0 commit comments