Initial commit

This commit is contained in:
2023-04-08 09:18:52 +02:00
commit 40e6fa63e5
34 changed files with 1060 additions and 0 deletions

106
Makefile Normal file
View File

@@ -0,0 +1,106 @@
all:
@echo "Please choose a task."
.PHONY: all
lint: lint-composer lint-yaml lint-xml lint-xliff lint-php
.PHONY: lint
lint-composer:
composer-normalize --dry-run
composer validate
.PHONY: lint-composer
lint-yaml:
yamllint .
.PHONY: lint-yaml
lint-xml:
find . -name '*.xml' \
-not -path './vendor/*' \
-not -path './src/Resources/public/vendor/*' \
-not -path './src/tests/data/*' \
| while read xmlFile; \
do \
XMLLINT_INDENT=' ' xmllint --encode UTF-8 --format "$$xmlFile"|diff - "$$xmlFile"; \
if [ $$? -ne 0 ] ;then exit 1; fi; \
done
.PHONY: lint-xml
lint-xliff:
find . -name '*.xlf' \
-not -path './vendor/*' \
-not -path './src/Resources/public/vendor/*' \
| while read xmlFile; \
do \
XMLLINT_INDENT=' ' xmllint --encode UTF-8 --format "$$xmlFile"|diff - "$$xmlFile"; \
if [ $$? -ne 0 ] ;then exit 1; fi; \
done
.PHONY: lint-xliff
lint-php:
vendor/bin/php-cs-fixer fix --verbose --diff --dry-run
.PHONY: lint-php
lint-symfony: lint-symfony-container lint-symfony-twig lint-symfony-xliff lint-symfony-yaml
.PHONY: lint-symfony
lint-symfony-container:
bin/console lint:container
.PHONY: lint-symfony-container
lint-symfony-twig:
bin/console lint:twig src tests
.PHONY: lint-symfony-twig
lint-symfony-xliff:
bin/console lint:xliff src tests
.PHONY: lint-symfony-xliff
lint-symfony-yaml:
bin/console lint:yaml src tests
.PHONY: lint-symfony-yaml
cs-fix: cs-fix-php cs-fix-xml cs-fix-xliff cs-fix-composer
.PHONY: cs-fix
cs-fix-php:
vendor/bin/php-cs-fixer fix --verbose
.PHONY: cs-fix-php
cs-fix-xml:
find . -name '*.xml' \
-not -path './vendor/*' \
-not -path './src/Resources/public/vendor/*' \
| while read xmlFile; \
do \
XMLLINT_INDENT=' ' xmllint --encode UTF-8 --format "$$xmlFile" --output "$$xmlFile"; \
done
.PHONY: cs-fix-xml
cs-fix-xliff:
find . -name '*.xlf' \
-not -path './vendor/*' \
-not -path './src/Resources/public/vendor/*' \
| while read xmlFile; \
do \
XMLLINT_INDENT=' ' xmllint --encode UTF-8 --format "$$xmlFile" --output "$$xmlFile"; \
done
.PHONY: cs-fix-xliff
cs-fix-composer:
composer-normalize
.PHONY: cs-fix-composer
build:
mkdir $@
test:
vendor/bin/phpunit -c phpunit.xml.dist
.PHONY: test
coverage:
vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover build/logs/clover.xml --dont-report-useless-tests
.PHONY: coverage