Skip to content

Commit 4d6846f

Browse files
Add composer phpcbf (#70)
1 parent 61d4e5d commit 4d6846f

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

composer.json

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88
"minimum-stability": "dev",
99
"prefer-stable": true,
1010
"autoload": {
11-
"psr-4": {"": "src/"},
12-
"files": [ "find-command.php" ]
11+
"psr-4": {
12+
"": "src/"
13+
},
14+
"files": [
15+
"find-command.php"
16+
]
1317
},
1418
"require": {
1519
"php": ">=5.4",
@@ -30,17 +34,18 @@
3034
}
3135
},
3236
"scripts": {
33-
"lint": "run-linter-tests",
34-
"phpcs": "run-phpcs-tests",
35-
"phpunit": "run-php-unit-tests",
36-
"behat": "run-behat-tests",
37-
"prepare-tests": "install-package-tests",
38-
"test": [
39-
"@lint",
40-
"@phpcs",
41-
"@phpunit",
42-
"@behat"
43-
]
37+
"lint": "run-linter-tests",
38+
"phpcs": "run-phpcs-tests",
39+
"phpcbf": "run-phpcbf-cleanup",
40+
"phpunit": "run-php-unit-tests",
41+
"behat": "run-behat-tests",
42+
"prepare-tests": "install-package-tests",
43+
"test": [
44+
"@lint",
45+
"@phpcs",
46+
"@phpunit",
47+
"@behat"
48+
]
4449
},
4550
"extra": {
4651
"branch-alias": {

0 commit comments

Comments
 (0)