diff --git a/.gitattributes b/.gitattributes index 6b4dc843e..c5a870fd0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -10,3 +10,4 @@ build.xml export-ignore CONTRIBUTING.md export-ignore phpunit.xml.dist export-ignore run-all.sh export-ignore +phpcs.xml.dist export-ignore diff --git a/.gitignore b/.gitignore index d2f5f6901..da7410292 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ lib/Doctrine/DBAL vendor/ composer.lock /tests/Doctrine/Performance/history.db +/.phpcs-cache diff --git a/.travis.yml b/.travis.yml index e55ea503c..c74cf36c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -78,6 +78,11 @@ jobs: before_script: wget https://phpbench.github.io/phpbench/phpbench.phar https://phpbench.github.io/phpbench/phpbench.phar.pubkey script: php phpbench.phar run -l dots --report=default + - stage: Coding standard + php: nightly + script: + - ./vendor/bin/phpcs + allow_failures: - php: nightly diff --git a/composer.json b/composer.json index 8316e5780..fad4b22ff 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,9 @@ "symfony/console": "~3.0|~4.0" }, "require-dev": { + "doctrine/coding-standard": "^1.0", "phpunit/phpunit": "^6.0", + "squizlabs/php_codesniffer": "^3.1", "symfony/yaml": "~3.4|~4.0" }, "suggest": { diff --git a/phpcs.xml.dist b/phpcs.xml.dist new file mode 100644 index 000000000..9ffa05d31 --- /dev/null +++ b/phpcs.xml.dist @@ -0,0 +1,24 @@ + + + + + + + + + + + + lib + tests + tools + + */tests/Doctrine/Tests/Proxies/__CG__/* + + + + + */tests/* + + +