File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,17 @@ README.md: $(SRC_FILES)
4
4
vendor/bin/mddoc
5
5
6
6
.PHONY : fix
7
- fix :
7
+ fix : cbf
8
8
vendor/bin/php-cs-fixer fix
9
9
10
10
.PHONY : test
11
- test :
11
+ test : cs
12
12
vendor/bin/phpunit
13
+
14
+ .PHONY : cs
15
+ cs :
16
+ vendor/bin/phpcs
17
+
18
+ .PHONY : cbf
19
+ cbf :
20
+ vendor/bin/phpcbf
Original file line number Diff line number Diff line change 12
12
"php" : " >=7.1"
13
13
},
14
14
"require-dev" : {
15
- "phpunit/phpunit" : " ^7.5"
15
+ "phpunit/phpunit" : " ^7.5" ,
16
+ "squizlabs/php_codesniffer" : " ^3.5" ,
17
+ "corpus/coding-standard" : " ^0.1.0" ,
18
+ "friendsofphp/php-cs-fixer" : " ^2.17"
16
19
},
17
20
"autoload" : {
18
21
"psr-4" : {
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <ruleset >
3
+
4
+ <file >src</file >
5
+ <file >test</file >
6
+ <file >example</file >
7
+
8
+ <rule ref =" Corpus" />
9
+
10
+ </ruleset >
You can’t perform that action at this time.
0 commit comments