Completed
Push — master ( bae7d3...c36f34 )
by Dzmitry
03:33
created

Checkout Config

filter:
    excluded_paths:
        - 'vendor/*'
build:
    dependencies:
        override:
            - 'composer install --dev --no-interaction'
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=clover.xml -c phpunit.xml.dist test/src'
                coverage:
                    file: clover.xml
                    format: php-clover
tools:
    php_mess_detector:
        filter:
            excluded_paths: ['vendor/*']
    php_code_sniffer:
        config:
            standard: PSR2
        filter:
            excluded_paths: ['vendor/*']
    php_code_coverage:
        test_command: vendor/bin/phpunit
        filter:
            excluded_paths: ['vendor/*']
    php_cpd: false
    php_pdepend:
        excluded_dirs:
            1: vendor
    php_loc:
        excluded_dirs:
            - vendor

Repository Config

filter:
    excluded_paths:
        - 'test/*'
checks:
    php: true
coding_style:
    php: {  }