Passed
Branch master (74426b)
by Andy
01:45
created

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            within:
                brackets: true
            other:
                after_type_cast: false

Global Config

checks:
    php: true
filter:
    excluded_paths:
        - 'examples/'
        - 'tests/'
tools:
    php_loc:
        enabled: true
        excluded_dirs: [tests, vendor]
    php_cpd: false
    php_sim:
        enabled: true
build:
    environment:
        php: '7.2'
        postgresql: false
        redis: false
    cache:
        directories:
            - 'vendor/'
            - '~/.composer/cache/files'
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=coverage'
                coverage:
                    file: 'coverage'
                    format: 'clover'
            - php-scrutinizer-run
            - phpcs-run