build_settings:
    ignore:
        - "vendor"
        - "bin"
        - "app"
        - "tests"
 
setup:
    composer:
        action: "install"
 
test:
    php_unit:
    php_loc:
    php_cpd:
        allow_failures: true
    php_mess_detector:
        allowed_warnings: 0
    php_code_sniffer:
        standard: "PSR2"
        allowed_warnings: 0
        allowed_errors: 0
    php_cs_fixer:
        level: "all"
    php_docblock_checker:
        allowed_warnings: -1 # Allow unlimited warnings for now.
