First commit

This commit is contained in:
Brabli
2022-07-23 17:27:04 +01:00
commit 0acd25a0a4
9 changed files with 50 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
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