Passed
Push — master ( 7f25ec...97f7f8 )
by Joël
02:26
created

Checkout Config

# .scrutinizer.yml
checks:
    php: true

filter:
    paths: [ "src/*" ]
    excluded_paths:
        - "tests/*"
        - "*/vendor/*"

build:
    environment:
        timezone: UTC
        php:
            version: 5.6
    nodes:
        tests: true
        analysis:
            tests:
                override:
                    -
                        command: phpcs-run
                        use_website_config: true
    tests:
        override:
            -
                command: 'composer test'
                coverage:
                    file: 'code-coverage/coverage.xml'
                    format: 'clover'

Repository Config

checks:
    php: true
filter: {  }
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
                negation: false
build:
    tests:
        override:
            -
                command: 'phpunit --coverage-clover=coverage.xml'
                coverage:
                    file: 'coverage.xml'
                    format: 'clover'
    nodes:
        tests: true
        analysis:
            tests:
                override:
                    -
                        command: phpcs-run
                        use_website_config: true