Passed
Push — main ( f91c65...9d1c2d )
by Oliver
25:54 queued 10:52
created

Checkout Config

build:
  environment:
    php: "8.1.2"
  nodes:
    analysis:
      tests:
        override:
          - "php-scrutinizer-run"

filter:
  paths: ["src/*"]
  excluded_paths: ["test/*"]
  dependency_paths: ["vendor/*"]

tools:
  external_code_coverage:
    timeout: 600
  php_mess_detector: true
  php_code_sniffer:
    enabled: true
    config:
      standard: "psr1"
  sensiolabs_security_checker: true
  # php_code_coverage: true
  php_pdepend: true
  php_loc:
    enabled: true
    excluded_dirs: ["test"]
  php_cpd:
    enabled: true
    excluded_dirs: ["test"]

# vim: syntax=yaml ts=2 sw=2 et sr softtabstop=2 autoindent

Repository Config

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