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 2183776 commit 6c9a036Copy full SHA for 6c9a036
README.md
@@ -32,24 +32,28 @@ Fetch dependencies with Composer.
32
composer install
33
```
34
35
-## Composer commands
+## Make commands
36
37
-Unit tests and code coverage:
+Starting and shutting down:
38
39
```bash
40
-composer unit
41
-composer coverage
+make up
+make down
42
43
44
-Code fixing:
+Code fixing against the coding standards:
45
46
47
-composer fixer
+make fix
48
49
50
-Static analysis:
+Code checking:
51
52
53
-composer psalm
54
-composer phpstan
+make check # includes all commands below
+make coverage
55
+make phpstan
56
+make psalm
57
+make standards
58
+make unit
59
0 commit comments