diff --git a/justfile b/justfile index cc4caa1..b200856 100644 --- a/justfile +++ b/justfile @@ -1,15 +1,15 @@ php := "docker compose run php" composer_install: - @{{php}} composer install + @{{php}} composer install composer_update: - @{{php}} composer update + @{{php}} composer update static_analysis: - @{{php}} vendor/bin/psalm + @{{php}} vendor/bin/psalm tests: - @{{php}} rm -rf var/cache - @{{php}} vendor/bin/phpunit + @{{php}} rm -rf var/cache + @{{php}} vendor/bin/phpunit