Initial commit
Some checks failed
PHP Composer / build (push) Has been cancelled

This commit is contained in:
Armel van Ravels
2024-08-30 20:29:39 +02:00
commit 804a875aff
38 changed files with 7224 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
EXEC="docker compose exec php"
up:
docker compose up -d
start: up composer-install
stop:
docker compose stop
cmd:
"$(EXEC)" sh
phpstan:
"$(EXEC)" vendor/bin/phpstan analyse src --level 8
cs-fix:
"$(EXEC)" vendor/bin/php-cs-fixer fix --allow-risky=yes