Blame | Letzte Änderung | Log anzeigen | RSS feed
# Well documented MakefilesDEFAULT_GOAL := helphelp:@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-40s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)##@ [Docker]start: ## Spin up the containerdocker-compose up -dstop: ## Shut down the containersdocker-compose downbuild: ## Build all docker imagesdocker-compose build##@ [Application]composer: ## Run composer commands. Specify the command e.g. via "make composer ARGS="install|update|require <dependency>"docker-compose run --rm app composer $(ARGS)lint: ## Run the Linterdocker-compose run --rm app ./vendor/bin/pint -vtest-lint: ## Run the Linter Testdocker-compose run --rm app ./vendor/bin/pint --test -vtest-types: ## Run the PHPStan analysisdocker-compose run --rm app ./vendor/bin/phpstan analyse --ansitest-unit: ## Run the Pest Test Suitedocker-compose run --rm app ./vendor/bin/pest --colors=alwaystest: ## Run the tests. Apply arguments via make test ARGS="--init"make test-lint && make test-types && make test-unit