Initial commit

This commit is contained in:
pcm-internal
2025-11-27 13:22:07 +00:00
commit 2a82b5c0b1
18 changed files with 496 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
PHP = docker compose run php
.PHONY: composer_install composer_update static_analysis tests remove_orphans
composer_install:
@$(PHP) composer install
composer_update:
@$(PHP) composer update
static_analysis:
@$(PHP) vendor/bin/phpstan analyse src --level 6
tests:
@$(PHP) rm -rf var/cache
@$(PHP) vendor/bin/phpunit
remove_orphans:
@docker compose down --remove-orphans