File tree Expand file tree Collapse file tree 5 files changed +37
-12
lines changed Expand file tree Collapse file tree 5 files changed +37
-12
lines changed Original file line number Diff line number Diff line change 1
1
/coverage /
2
+ /doc /
2
3
/test /data- *
3
4
/vendor /
5
+ /.idea
4
6
/.phpunit.result.cache
5
- /clover.xml
6
7
/composer.lock
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
- <ruleset name = " cssjanus " >
2
+ <ruleset >
3
3
<rule ref =" PSR2" >
4
4
<exclude name =" Generic.WhiteSpace.DisallowTabIndent" />
5
5
<exclude name =" PSR1.Classes.ClassDeclaration.MissingNamespace" />
13
13
</properties >
14
14
</rule >
15
15
<file >.</file >
16
- <exclude-pattern >vendor</exclude-pattern >
16
+ <arg name =" encoding" value =" UTF-8" />
17
+ <arg name =" extensions" value =" php" />
17
18
<exclude-pattern >coverage</exclude-pattern >
19
+ <exclude-pattern >doc/html</exclude-pattern >
20
+ <exclude-pattern >vendor</exclude-pattern >
18
21
</ruleset >
Original file line number Diff line number Diff line change
1
+ # Doxyfile <https://www.doxygen.nl/manual/config.html>
2
+ PROJECT_NAME = "CSSJanus"
3
+ PROJECT_BRIEF = "Convert CSS stylesheets between left-to-right and right-to-left."
4
+ OUTPUT_DIRECTORY = doc
5
+ JAVADOC_AUTOBRIEF = YES
6
+ QT_AUTOBRIEF = YES
7
+ QUIET = YES
8
+ WARN_NO_PARAMDOC = YES
9
+ WARN_IF_DOC_ERROR = NO
10
+ WARN_IF_INCOMPLETE_DOC = NO
11
+ INPUT = README.md src/
12
+ FILE_PATTERNS = *.php
13
+ RECURSIVE = YES
14
+ USE_MDFILE_AS_MAINPAGE = README.md
15
+ HTML_DYNAMIC_SECTIONS = YES
16
+ GENERATE_TREEVIEW = YES
17
+ TREEVIEW_WIDTH = 250
18
+ GENERATE_LATEX = NO
19
+ GENERATE_TAGFILE = doc/html/tagfile.xml
Original file line number Diff line number Diff line change 2
2
"name" : " cssjanus/cssjanus" ,
3
3
"description" : " Convert CSS stylesheets between left-to-right and right-to-left." ,
4
4
"license" : " Apache-2.0" ,
5
+ "homepage" : " https://www.mediawiki.org/wiki/CSSJanus" ,
5
6
"authors" : [
6
7
{
7
8
"name" : " Roan Kattouw"
35
36
" @phan"
36
37
],
37
38
"cover" : " phpunit --coverage-html coverage" ,
39
+ "phan" : " phan --allow-polyfill-parser" ,
38
40
"fix" : [
39
41
" phpcbf"
40
- ],
41
- "phan" : " phan --allow-polyfill-parser --no-progress-bar"
42
+ ]
42
43
}
43
44
}
Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" colors =" true" beStrictAboutTestsThatDoNotTestAnything =" true" beStrictAboutOutputDuringTests =" true" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
- <coverage processUncoveredFiles =" true" >
1
+ <?xml version =" 1.0" ?>
2
+ <phpunit
3
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:noNamespaceSchemaLocation=" https://schema.phpunit.de/9.3/phpunit.xsd"
5
+ colors=" true"
6
+ beStrictAboutTestsThatDoNotTestAnything=" true"
7
+ beStrictAboutOutputDuringTests=" true" >
8
+ <coverage includeUncoveredFiles =" true" >
4
9
<include >
5
10
<directory suffix =" .php" >./src</directory >
6
11
</include >
7
- <report >
8
- <clover outputFile =" clover.xml" />
9
- <html outputDirectory =" coverage/" />
10
- </report >
11
12
</coverage >
12
13
<testsuites >
13
14
<testsuite name =" Tests" >
You can’t perform that action at this time.
0 commit comments