Passed
Push — master ( 6f49da...8dac2e )
by Stanislau
03:08
created

Repository Config

build:
    environment:
        php:
            version: 8.0.24
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
        - 'example/*'
    dependency_paths:
        - 'vendor/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                bitwise: false
                concatenation: true

Global Config

build:
    environment:
        php: 8.2
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
        coverage:
            tests:
                override:
                    - command: XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover ./test-coverage-report/clover.xml
                      coverage:
                        file: test-coverage-report/clover.xml
                        format: clover
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                bitwise: false