Archived
Public Access
3
0
This repository has been archived on 2026-04-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-07-23 17:27:04 +01:00

17 lines
287 B
Makefile

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