Stop download phpcs from GitHub and use the composer copy
This commit is contained in:
parent
f8466cf61b
commit
fa472689d6
|
@ -18,21 +18,6 @@ if [ $1 == 'before' ]; then
|
|||
composer self-update
|
||||
composer install --no-interaction
|
||||
|
||||
## Only run on latest stable PHP box (defined in .travis.yml).
|
||||
if [[ ${TRAVIS_PHP_VERSION} == ${PHP_LATEST_STABLE} ]]; then
|
||||
# Install CodeSniffer for WordPress Coding Standards checks. Only check once.
|
||||
git clone -b master --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git /tmp/phpcs
|
||||
# Install WordPress Coding Standards.
|
||||
git clone -b master --depth 1 https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git /tmp/sniffs
|
||||
# Install PHP Compatibility sniffs.
|
||||
git clone -b master --depth 1 https://github.com/wimg/PHPCompatibility.git /tmp/sniffs/PHPCompatibility
|
||||
# Set install path for PHPCS sniffs.
|
||||
# @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941
|
||||
/tmp/phpcs/scripts/phpcs --config-set installed_paths /tmp/sniffs
|
||||
# After CodeSniffer install you should refresh your path.
|
||||
phpenv rehash
|
||||
fi
|
||||
|
||||
elif [ $1 == 'during' ]; then
|
||||
|
||||
## Only run on latest stable PHP box (defined in .travis.yml).
|
||||
|
@ -46,11 +31,11 @@ elif [ $1 == 'during' ]; then
|
|||
# -n flag: Do not print warnings. (shortcut for --warning-severity=0)
|
||||
# --standard: Use WordPress as the standard.
|
||||
# --extensions: Only sniff PHP files.
|
||||
/tmp/phpcs/scripts/phpcs -p -s -n ./*.php --standard=./phpcs.ruleset.xml --extensions=php
|
||||
/tmp/phpcs/scripts/phpcs -p -s -n ./**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/*.php --ignore=./tests/*.php
|
||||
/tmp/phpcs/scripts/phpcs -p -s -n ./**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/*.php --ignore=./tests/**/*.php
|
||||
/tmp/phpcs/scripts/phpcs -p -s -n ./**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php --ignore=./tests/**/**/*.php
|
||||
/tmp/phpcs/scripts/phpcs -p -s -n ./**/**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php --ignore=./tests/**/**/*.php
|
||||
./vendor/bin/phpcs -p -s -n ./*.php --standard=./phpcs.ruleset.xml --extensions=php
|
||||
./vendor/bin/phpcs -p -s -n ./**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/*.php --ignore=./tests/*.php
|
||||
./vendor/bin/phpcs -p -s -n ./**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/*.php --ignore=./tests/**/*.php
|
||||
./vendor/bin/phpcs -p -s -n ./**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php --ignore=./tests/**/**/*.php
|
||||
./vendor/bin/phpcs -p -s -n ./**/**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php --ignore=./tests/**/**/*.php
|
||||
fi
|
||||
|
||||
elif [ $1 == 'after' ]; then
|
||||
|
|
Loading…
Reference in New Issue