diff --git a/.scrutinizer.yml.old b/.scrutinizer.yml.old deleted file mode 100644 index b6ee040..0000000 --- a/.scrutinizer.yml.old +++ /dev/null @@ -1,38 +0,0 @@ -before_commands: - - "composer install --dev --prefer-source" - -tools: - php_code_coverage: - enabled: true - test_command: ./vendor/bin/phpunit -c phpunit.xml.dist --group=Coverage - php_code_sniffer: - enabled: true - config: - standard: PSR2 - filter: - paths: ["src/*", "tests/*"] - php_cpd: - enabled: true - excluded_dirs: ["build/*", "tests", "vendor"] - php_cs_fixer: - enabled: true - config: - level: all - filter: - paths: ["src/*", "tests/*"] - php_loc: - enabled: true - excluded_dirs: ["build", "tests", "vendor"] - php_mess_detector: - enabled: true - filter: - paths: ["src/*"] - php_pdepend: - enabled: true - excluded_dirs: ["build", "tests", "vendor"] - php_analyzer: true - php_analyzer: - filter: - paths: ["src/*", "tests/*"] - sensiolabs_security_checker: true - diff --git a/.travis.yml.old b/.travis.yml.old deleted file mode 100644 index 6af8574..0000000 --- a/.travis.yml.old +++ /dev/null @@ -1,59 +0,0 @@ -sudo: false - -language: php - -cache: - directories: - - $HOME/.composer/cache - - vendor - -env: - global: - - COMPOSER_ARGS="--no-interaction" - -matrix: - fast_finish: true - include: - - php: 7.3 - env: - - DEPS=lowest - - php: 7.3 - env: - - DEPS=latest - - php: 7.4 - env: - - DEPS=lowest - - php: 7.4 - env: - - DEPS=latest - - CS_CHECK=true - - TEST_COVERAGE=true - - php: 8.0 - env: - - DEPS=lowest - - php: 8.0 - env: - - DEPS=latest - - -before_install: - - if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi - - travis_retry composer self-update - -install: - - if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi - - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi - - travis_retry composer install $COMPOSER_ARGS - - composer show - -script: - - if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; fi - - if [[ $TEST_COVERAGE != 'true' ]]; then composer test ; fi - - if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi - -after_script: - - if [[ $TEST_COVERAGE == 'true' ]]; then composer upload-coverage ; fi - -notifications: - irc: "irc.freenode.org#zftalk.modules" - email: false