Skip to content

Commit

Permalink
Merge pull request #132 from adriansuter/patch-composer-scripts
Browse files Browse the repository at this point in the history
Fix composer scripts
  • Loading branch information
l0gicgate committed Oct 5, 2019
2 parents f27d67d + c3751b4 commit 27ccc69
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions composer.json
Expand Up @@ -56,13 +56,13 @@
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "php vendor/bin/phpunit",
"phpcs": "php vendor/bin/phpcs",
"phpstan": "php -d memory_limit=-1 vendor/bin/phpstan analyse src"
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1"
}
}

0 comments on commit 27ccc69

Please sign in to comment.