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
-16
View File
@@ -1,16 +0,0 @@
PHP = docker compose run php
.PHONY: composer_install composer_update static_analysis tests
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
+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