Completed
Push — master ( fb571b...a88ac1 )
by Jason
02:24
created

Checkout Config

inherit: true

#Copied from https://www.adayinthelifeof.nl/2013/11/20/external-code-coverage-with-travis-scrutinizer/
tools:
    external_code_coverage:
      timeout: 600
    php_code_sniffer:
      config:
        standard: PSR2
    php_cs_fixer:
      extensions:
        # Default:
        - php
      fixers: []
      enabled: false
      filter:
            paths: [tests/*,src/*]
            excluded_paths: []
coding_style:
  php:
    indentation:
      general:
        use_tabs: false

checks:
    php:
        code_rating: true
        duplication: true

build:
  nodes:
    analysis:
      tests:
        override: [php-scrutinizer-run]

filter:
    paths: [tests/*,src/*]

Repository Config

checks:
    php: true
filter: {  }
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            within:
                brackets: true