File tree Expand file tree Collapse file tree 5 files changed +69
-1
lines changed Expand file tree Collapse file tree 5 files changed +69
-1
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ charset = utf-8
5
+ indent_size = 4
6
+ indent_style = space
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [* .md ]
12
+ trim_trailing_whitespace = false
13
+
14
+ [* .{yml,yaml} ]
15
+ indent_size = 2
Original file line number Diff line number Diff line change
1
+ # Path-based git attributes
2
+ # https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3
+
4
+ # Ignore all test and documentation with "export-ignore".
5
+ /.gitattributes export-ignore
6
+ /.gitignore export-ignore
7
+ /phpunit.xml.dist export-ignore
8
+ /tests export-ignore
9
+ /.editorconfig export-ignore
10
+ /.php_cs export-ignore
11
+ /.github export-ignore
12
+ /psalm.xml export-ignore
13
+
Original file line number Diff line number Diff line change 1
1
/vendor
2
2
/.idea
3
3
.phpunit.result.cache
4
+ build
Original file line number Diff line number Diff line change 36
36
}
37
37
},
38
38
"scripts" : {
39
- "test" : " ./vendor/bin/phpunit --color=always ./tests "
39
+ "test" : " ./vendor/bin/phpunit"
40
40
},
41
41
"config" : {
42
42
"sort-packages" : true
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
5
+ backupGlobals =" false"
6
+ backupStaticAttributes =" false"
7
+ bootstrap =" vendor/autoload.php"
8
+ colors =" true"
9
+ convertErrorsToExceptions =" true"
10
+ convertNoticesToExceptions =" true"
11
+ convertWarningsToExceptions =" true"
12
+ processIsolation =" false"
13
+ stopOnFailure =" false"
14
+ executionOrder =" random"
15
+ failOnWarning =" true"
16
+ failOnRisky =" true"
17
+ failOnEmptyTestSuite =" true"
18
+ beStrictAboutOutputDuringTests =" true"
19
+ verbose =" true"
20
+ >
21
+ <testsuites >
22
+ <testsuite name =" Test Suite" >
23
+ <directory >tests</directory >
24
+ </testsuite >
25
+ </testsuites >
26
+ <coverage >
27
+ <include >
28
+ <directory suffix =" .php" >./src</directory >
29
+ </include >
30
+ <report >
31
+ <html outputDirectory =" build/coverage" />
32
+ <text outputFile =" build/coverage.txt" />
33
+ <clover outputFile =" build/logs/clover.xml" />
34
+ </report >
35
+ </coverage >
36
+ <logging >
37
+ <junit outputFile =" build/report.junit.xml" />
38
+ </logging >
39
+ </phpunit >
You can’t perform that action at this time.
0 commit comments