Completed
Push — master ( 9d10c2...bf46e5 )
by Lars
05:14
created

Checkout Config

build:
  environment:
    php:
      version: 5.5 # Common versions: 5.4, 5.5, 5.6, 7.0 or hhvm
  tests:
    override:
      -
        command: 'mysql -e "create database IF NOT EXISTS intraface_test;" && php tests/unit/setup_database.php && cd tests/unit/ && phpunit --coverage-clover=../../clover.xml --configuration phpunit.example.xml .'
        coverage:
          file: 'clover.xml'
          format: 'php-clover'
checks:
  php:
    custom_coding_standard:
      ruleset_path: 'phpcs.xml'

filter:
  excluded_paths:
    - src/intraface.dk/core/javascript/*

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
        - '*.tpl.php'
checks:
    php:
        fix_php_opening_tag: false
        remove_php_closing_tag: false
        one_class_per_file: false
        side_effects_or_types: false
        no_mixed_inline_html: false
        require_braces_around_control_structures: false
        php5_style_constructor: false
        no_global_keyword: false
        avoid_usage_of_logical_operators: false
        psr2_class_declaration: false
        no_underscore_prefix_in_properties: false
        no_underscore_prefix_in_methods: false
        blank_line_after_namespace_declaration: false
        single_namespace_per_use: false
        psr2_switch_declaration: false
        psr2_control_structure_declaration: false
        avoid_superglobals: false
        security_vulnerabilities: false
        no_exit: false
coding_style:
    php:
        spaces:
            around_operators:
                multiplicative: false
            other:
                after_type_cast: false
build: true