Passed
Push — master ( 2a0eac...eecbbb )
by Maike
01:58
created

Checkout Config

checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
filter:
    excluded_paths:
        - "vendor/*"
        - "tests/*"
    paths:
        - "lib/*"
tools:
    php_analyzer: true
    php_changetracking: true
    php_code_sniffer:
        enabled: true
        config:
            standard: PSR2
    php_cpd: true
    php_mess_detector: true
    php_pdepend: true
    php_sim: true
build:
    dependencies:
        before:
            - "sudo composer self-update"
        override:
            - "composer install --no-interaction --prefer-dist"
    tests:
        override:
            -
                command: './vendor/bin/phpunit -c phpunit.xml --coverage-clover=clover.xml'
                coverage:
                    file: 'clover.xml'
                    format: 'php-clover'

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
            environment:
                node:
                    version: 6.0.0
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        indentation:
            general:
                size: 1
        spaces:
            around_operators:
                concatenation: true
            before_keywords:
                else: false
            other:
                after_type_cast: false