Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 31d7ee0

Browse files
update testing sequence
1 parent 30de4d7 commit 31d7ee0

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,33 @@ foreach ($translations as $translation) {
5151

5252
## Testing
5353

54-
Run PHPUnit Tests.
54+
Run PHP_CodeSniffer Tests:
55+
56+
```bash
57+
composer cs
58+
```
59+
60+
Run PHPMD Tests:
61+
62+
```bash
63+
composer md
64+
```
65+
66+
Run PHPUnit Tests:
5567

5668
```bash
5769
composer test
5870
```
5971

60-
Run Check-Style.
72+
Run all tests:
6173

6274
```bash
63-
composer cs
75+
composer test:all
6476
```
6577

6678
## Credits
6779

68-
- [arkadiusjonczek][link-author]
80+
- [Arkadius Jonczek][link-author]
6981
- [All Contributors][link-contributors]
7082

7183
## License

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
}
3737
},
3838
"scripts": {
39-
"test": "vendor/bin/phpunit",
4039
"cs": "vendor/bin/phpcs",
4140
"md": "vendor/bin/phpmd src,tests text phpmd.xml.dist",
41+
"test": "vendor/bin/phpunit",
4242
"test:all": [
43-
"composer test",
4443
"composer cs",
45-
"composer md"
44+
"composer md",
45+
"composer test"
4646
]
4747
},
4848
"config": {

0 commit comments

Comments
 (0)