Skip to content

Commit

Permalink
feature/remove-unnecessary-path-from-composer-scripts (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
svenluijten authored and matthew-inamdar committed Oct 9, 2019
1 parent 47afe21 commit 3406ad2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
"@test:style",
"@test:unit"
],
"test:style": "@php vendor/bin/php-cs-fixer fix --config=.php_cs --allow-risky=yes --dry-run --diff --verbose",
"test:unit": "@php vendor/bin/phpunit",
"fix:style": "@php vendor/bin/php-cs-fixer fix --config=.php_cs --allow-risky=yes --diff --verbose"
"test:style": "php-cs-fixer fix --config=.php_cs --allow-risky=yes --dry-run --diff --verbose",
"test:unit": "phpunit",
"fix:style": "php-cs-fixer fix --config=.php_cs --allow-risky=yes --diff --verbose"
}
}

0 comments on commit 3406ad2

Please sign in to comment.