Passed
Pull Request — master (#11)
by Austin
02:25
created

Checkout Config

build:
  nodes:
    analysis:
      project_setup:
        override:
          - 'true'
      tests:
        override:
          - php-scrutinizer-run
          -
            command: phpcs-run
            use_website_config: true
      environment:
        node:
          version: 6.0.0

filter:
  excluded_paths:
    - 'tests/*'
    - '*.min.js'
    - 'docs/*'
    - 'vendor/*'

checks:
  php: true
  javascript: true

coding_style:
  php:
    spaces:
      around_operators:
        assignment: true
        concatenation: true
      within:
        brackets: true

Repository Config

build:
    dependencies:
        before:
            - 'pecl install uopz'
    tests:
        override:
            - php-scrutinizer-run
            -
                command: phpcs-run
                use_website_config: true
            -
                command: 'vendor/bin/phpunit --coverage-clover build/logs/clover.xml'
                coverage:
                    file: 'build/logs/clover.xml'
                    format: 'clover'
    environment:
        php:
            version: 7.0, 7.1, 7.2
tools:
    php_loc:
        enabled:              true
        command:              phploc
        excluded_dirs:
            - vendor
            - tests
            - build
            - docs
    sensiolabs_security_checker: true
filter:
    excluded_paths:
        - 'vendor/*'
        - 'tests/*'
        - 'build/*'
        - 'docs/*'
checks:
    php: true
coding_style:
    php: {  }