Completed
Push — master ( 822e24...0121e8 )
by Christopher
20s
created

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            dependencies:
                after:
                    - composer require --dev squizlabs/php_codesniffer:3.3
            tests:
                override:
                    - php-scrutinizer-run --enable-security-analysis
                    -
                        command: phpcs-run
                        use_website_config: true
filter:
    excluded_paths:
        - 'tests/*'
        - 'src/Config/*'
        - 'src/Routes/*'
checks:
    php:
        simplify_boolean_return: true
        return_doc_comments: true
        return_doc_comment_if_not_inferrable: true
        remove_extra_empty_lines: true
        properties_in_camelcaps: true
        phpunit_assertions: true
        parameters_in_camelcaps: true
        parameter_doc_comments: true
        param_doc_comment_if_not_inferrable: true
        overriding_parameter: true
        no_short_variable_names:
            minimum: '3'
        no_short_method_names:
            minimum: '3'
        no_long_variable_names:
            maximum: '20'
        no_goto: true
        more_specific_types_in_doc_comments: true
        fix_use_statements:
            remove_unused: true
            preserve_multiple: false
            preserve_blanklines: false
            order_alphabetically: false
        fix_line_ending: true
        check_method_contracts:
            verify_interface_like_constraints: true
            verify_documented_constraints: true
            verify_parent_constraints: true

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