Completed
Pull Request — master (#7)
by lee
01:48
created

Checkout Config

# .scrutinizer.yml
imports:
    - php
filter:
    excluded_paths:
        - 'tests/*'
tools:
    external_code_coverage:
        timeout: 1800   # Timeout in seconds.
        runs: 1         # Scrutinizer will wait for n code coverage submissions

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        indentation:
            general:
                size: 1
build:
    environment:
        php:
            version: 7.1.0
    tests:
        override:
            -
                command: 'phpunit'
                coverage:
                    file: 'build/logs/clover.xml'
                    format: 'clover'