Completed
Pull Request — master (#10)
by Samuel
02:21
created

Checkout Config

filter:
    paths:
        - 'src/*'
    excluded_paths:
            - 'tests/*'
            - 'vendor/*'
checks:
    php:
        variable_existence: true
        unused_parameters: true
        unused_variables: true
        unused_properties: true
        unused_methods: true
        unreachable_code: true
        code_rating: true
        deprecated_code_usage: true
        duplication: true
        security_vulnerabilities: true
        parameter_doc_comments: true
        no_underscore_prefix_in_methods: true
        no_underscore_prefix_in_properties: true
        no_short_method_names:
            minimum: '3'
        no_long_variable_names:
            maximum: '30'

tools:
    php_sim: true
    php_pdepend: true
    php_analyzer: true
    php_mess_detector: true
    php_changetracking: true
    php_code_sniffer: true
    php_cs_fixer: true
    sensiolabs_security_checker: true

coding_style:
    php:
        spaces:
            around_operators:
                multiplicative: false

build:
    tests:
        override:
            -
                command: './vendor/bin/atoum -d tests/units/Recurrence'
                coverage:
                    file: './var/code-coverage/recurrence.coverage.xml'
                    format: 'clover'

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                multiplicative: false