diff --git a/.gitattributes b/.gitattributes index f0f9b58..67d8112 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4,7 +4,7 @@ /.github/ export-ignore /.gitignore export-ignore /.gitlab/ export-ignore -/.php_cs.dist export-ignore +/.php_cs.php export-ignore /Tests/ export-ignore /codeception.yml export-ignore -/phpcs.xml.dist export-ignore +/phpcs.xml export-ignore diff --git a/.php_cs.dist b/.php_cs.php similarity index 100% rename from .php_cs.dist rename to .php_cs.php diff --git a/composer.json b/composer.json index e4663f9..e1bf548 100644 --- a/composer.json +++ b/composer.json @@ -68,7 +68,7 @@ }, "scripts": { "ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l", - "ci:php:codestyle": "php-cs-fixer fix --config .php_cs.dist -v --dry-run --using-cache false --diff --diff-format=udiff", + "ci:php:codestyle": "php-cs-fixer fix --config .php_cs.php -v --dry-run --using-cache false --diff --diff-format=udiff", "ci:php:sniff": ".Build/vendor/bin/phpcs Classes Tests", "ci:json:lint": "find . ! -path '*.Build/*' -name '*.json' | xargs .Build/vendor/bin/jsonlint -q", "ci:yaml:lint": "find . ! -path '*.Build/*' -name '*.yml' | xargs .Build/vendor/bin/yaml-lint", diff --git a/phpcs.xml.dist b/phpcs.xml similarity index 100% rename from phpcs.xml.dist rename to phpcs.xml