-
-
Save allaniftrue/a9c79411de35ba6b78ae60526b38ba50 to your computer and use it in GitHub Desktop.
phpci.yml Laravel 5 config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build_settings: | |
verbose: false | |
prefer_symlink: false | |
setup: | |
composer: | |
action: "install" | |
prefer_dist: false | |
test: | |
php_parallel_lint: | |
ignore: | |
- vendor/ | |
- _ide_helper.php | |
php_code_sniffer: | |
#standard: "/phpcs.xml" | |
#allowed_errors: 0 | |
#allowed_warnings: -1 #unlimited | |
path: "app" | |
ignore: | |
- "app/views" | |
standard: "PSR1,PSR2" | |
php_mess_detector: | |
path: "app" | |
rules: | |
- "cleancode" | |
- "controversial" | |
- "codesize" | |
- "design" | |
- "naming" | |
- "unusedcode" | |
allow_failures: true | |
zero_config: true # do not make build as failed if something was detected | |
php_unit: | |
config: | |
- "phpunit.xml" | |
path: "tests/" | |
failure: | |
email: | |
committer: true | |
default_mailto_address: [email protected] | |
complete: | |
email: | |
default_mailto_address: [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment