Files
pcm-badge-bundle/justfile
T
2026-04-30 12:23:30 +01:00

20 lines
415 B
Makefile

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
# Run the local Symfony preview app at http://localhost:8000
serve:
@docker compose run --rm php sh -c "rm -rf dev/var/cache && php -S 0.0.0.0:8000 -t dev/public"