build_settings:
    ignore:
        - "vendor"
        - "tests"
        - "docs"
 
setup:
    composer:
        action: "install"
 
test:
    php_unit:
    php_loc:
    php_cpd:
        allow_failures: true
    php_mess_detector:
        allow_failures: true
        zero_config: true # do not make build as failed if something was detected
    php_code_sniffer:
        standard: "PSR2"
        allowed_warnings: 0
        allowed_errors: 0
    php_docblock_checker:
        allowed_warnings: -1 # Allow unlimited warnings for now.
slack_notify:
    webhook_url: "https://hooks.slack.com/services/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"
    room: "#collections"
    username: "italolelis"
    icon: ":ghost:"
    message: "%PROJECT_TITLE% - build %BUILD% completed"
 
  |