Passed
Branch main (082e8b)
by Jacobo
15:04
created

Checkout Config

build:
    dependencies:
        before:
            - sudo apt-get update
            - sudo apt-get install -y openssl libssl-dev pkg-config

Repository Config

build:
    image: default-bionic 
    environment:
        php: 8.3.13

    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    - command: phpcs-run
                      use_website_config: true
            dependencies:
                before:
                    - composer self-update
                    
filter:
    excluded_paths:
        - 'tests/*'

checks:
    php: true

coding_style:
    php:
        spaces:
            around_operators:
                bitwise: false
                concatenation: true
            within:
                brackets: true
            other:
                after_type_cast: false