Skip to content

Commit 2a00509

Browse files
committed
Remove non-standard Composer commands
I'm reducing the confusing number of Composer commands to "cs", "test", and "ci". Usually, PHPCS is executed before PHPUnit. This patch also makes sure this order is consistent.
1 parent 9379f98 commit 2a00509

1 file changed

Lines changed: 4 additions & 10 deletions

File tree

composer.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,12 @@
6262
"covers-validator"
6363
],
6464
"cs": [
65-
"@phpcs",
66-
"@phpmd"
65+
"phpcs -p -s",
66+
"phpmd src/ text phpmd.xml"
6767
],
6868
"ci": [
69-
"@test",
70-
"@cs"
71-
],
72-
"phpcs": [
73-
"phpcs -p -s"
74-
],
75-
"phpmd": [
76-
"phpmd src/ text phpmd.xml"
69+
"@cs",
70+
"@test"
7771
]
7872
}
7973
}

0 commit comments

Comments
 (0)