You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.PHONY: asset auto-review cache coverage cs database infection integration it stan test test-env unit
it: cs stan test
asset:
yarn install
yarn run production
auto-review: vendor
vendor/bin/phpunit --testsuite auto-review
cache: vendor
bin/console cache:clear --env=development
bin/console cache:clear --env=testing
coverage: vendor
if [ $(type) = "html" ]; then vendor/bin/phpunit --testsuite unit --coverage-html coverage; else vendor/bin/phpunit --testsuite unit --coverage-text; fi;
cs: vendor
vendor/bin/php-cs-fixer fix --verbose --diff
database: test-env vendor
mysql -uroot -e "DROP DATABASE IF EXISTS cfp_test"