3
0

Replace makefile with justfile

This commit is contained in:
brabli
2026-05-05 10:38:28 +01:00
parent 6e2c241349
commit 5548df12bd
2 changed files with 14 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
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