We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b21eb commit 6d165a6Copy full SHA for 6d165a6
README.md
@@ -90,3 +90,10 @@ Contributors since I forked the repo.
90
### License (BSD License)
91
92
see [License](LICENSE)
93
+
94
+## tests
95
96
+```BASH
97
+composer run-script php_src
98
+composer run-script php_test
99
+```
composer.json
@@ -22,11 +22,16 @@
22
"ext-mbstring": "*"
23
},
24
"require-dev": {
25
- "phpunit/phpunit": "7.*"
+ "phpunit/phpunit": "7.*",
26
+ "squizlabs/php_codesniffer": "*"
27
28
"autoload": {
29
"psr-4": {
30
"jblond\\": "lib/jblond"
31
}
32
+ },
33
+ "scripts": {
34
+ "php_src": "phpcs --standard=phpcs.xml -s -p --colors ./lib/",
35
+ "php_test": "phpcs --standard=phpcs.xml -s -p --colors ./tests/"
36
37
0 commit comments