Checkout Config
            inherit: true
tools:
    php_code_sniffer: true
    php_cpd: true
    php_cs_fixer: true
    php_loc: true
    php_mess_detector: true
    php_pdepend: true
    php_analyzer: true
    sensiolabs_security_checker: true
    external_code_coverage: true
before_commands:
    - "composer install --prefer-source"
                    Global Config
            inherit: true
filter:
    excluded_paths: [vendor/*, app/*, web/*]
tools:
    php_code_coverage:
        test_command: phpunit
    php_code_sniffer: true
    php_cpd: true
    php_cs_fixer: true
    php_loc: true
    php_mess_detector: true
    php_pdepend:
        excluded_dirs: [vendor]
    php_analyzer: true
    sensiolabs_security_checker: true
        
before_commands:
    - "composer install --prefer-source"