Initial commit

This commit is contained in:
pcm-libraries
2024-08-07 15:04:23 +00:00
commit a4f4e1990c
17 changed files with 450 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