We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9aab53 commit 47d173dCopy full SHA for 47d173d
.editorconfig
@@ -8,3 +8,7 @@ insert_final_newline = true
8
9
[*.{yml,yaml}]
10
indent_size = 2
11
+
12
+[Makefile]
13
+indent_style = tab
14
+indent_size = 4
Makefile
@@ -0,0 +1,16 @@
1
+install:
2
+ composer install
3
4
+phpunit:
5
+ ./vendor/bin/phpunit
6
7
+phpcs:
+ ./vendor/bin/phpcs
+phpstan:
+ ./vendor/bin/phpstan
+test:
+ make phpunit
15
+ make phpcs
16
+ make phpstan
0 commit comments