File tree Expand file tree Collapse file tree 6 files changed +71
-7609
lines changed Expand file tree Collapse file tree 6 files changed +71
-7609
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
5
+ composer.lock
Original file line number Diff line number Diff line change 23
23
},
24
24
"require-dev" : {
25
25
"orchestra/testbench" : " ^4.0|^5.0|^6.0" ,
26
- "phpunit/phpunit" : " ^8.0|^ 9.0"
26
+ "phpunit/phpunit" : " ^9.0"
27
27
},
28
28
"autoload" : {
29
29
"psr-4" : {
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
You can’t perform that action at this time.
0 commit comments