Replace makefile with justfile

This commit is contained in:
brabli
2025-02-26 09:47:03 +00:00
parent 38e4c814e0
commit 623fc60af2
2 changed files with 15 additions and 16 deletions

15
justfile Normal file
View File

@@ -0,0 +1,15 @@
php := "docker compose run php"
composer_install:
@{{php}} composer install
composer_update:
@{{php}} composer update
static_analysis:
@{{php}} vendor/bin/psalm
tests:
@{{php}} rm -rf var/cache
@{{php}} vendor/bin/phpunit