| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | UPLOAD_HOST=phpgeo.marcusjaschen.deUPLOAD_PATH=phpgeo.marcusjaschen.dePHP ?= php.PHONY: docsdocs: daux.PHONY: dauxdaux:	rm -Rf build/daux	mkdir -p build/daux	docker run --rm -v "$(PWD)":/src -w /src daux/daux.io daux generate -d build/daux.PHONY: cleanclean:	rm -Rf build.PHONY: upload_docsupload_docs: docs	rsync --recursive --delete build/daux/ $(UPLOAD_HOST):$(UPLOAD_PATH)/.PHONY: cici: lint coding-standards composer-validate sniff static-analysis-psalm unit-tests.PHONY: coding-standardscoding-standards: sniff.PHONY: composer-validatecomposer-validate:	composer validate --no-check-publish.PHONY: lintlint:	$(PHP) ./vendor/bin/parallel-lint src.PHONY: sniffsniff:	# the `-` prefix ignores the exit status of the command	-$(PHP) ./vendor/bin/phpcs --standard=codesniffer_rules.xml src.PHONY: static-analysis-psalmstatic-analysis-psalm:	$(PHP) ./vendor/bin/psalm.PHONY: unit-testsunit-tests:	$(PHP) ./vendor/bin/phpunit
 |