Skip to content

Commit 6c9a036

Browse files
Update README.md
1 parent 2183776 commit 6c9a036

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,28 @@ Fetch dependencies with Composer.
3232
composer install
3333
```
3434

35-
## Composer commands
35+
## Make commands
3636

37-
Unit tests and code coverage:
37+
Starting and shutting down:
3838

3939
```bash
40-
composer unit
41-
composer coverage
40+
make up
41+
make down
4242
```
4343

44-
Code fixing:
44+
Code fixing against the coding standards:
4545

4646
```bash
47-
composer fixer
47+
make fix
4848
```
4949

50-
Static analysis:
50+
Code checking:
5151

5252
```bash
53-
composer psalm
54-
composer phpstan
53+
make check # includes all commands below
54+
make coverage
55+
make phpstan
56+
make psalm
57+
make standards
58+
make unit
5559
```

0 commit comments

Comments
 (0)