Created
February 17, 2015 17:10
-
-
Save Caffe1neAdd1ct/712bed9e26f6d7e3a781 to your computer and use it in GitHub Desktop.
PHPCI Config for Zend Framework 1 Projects With Composer Enabled
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: | |
ignore: | |
- "vendor" | |
- "tests" | |
setup: | |
composer: | |
action: "install --no-dev" | |
test: | |
php_unit: | |
config: | |
- "tests/phpunit.xml" | |
run_from: "tests/" | |
coverage: "logs/coverage" | |
php_mess_detector: | |
rules: | |
- "codesize" | |
- "unusedcode" | |
- "naming" | |
allow_failures: true | |
zero_config: true | |
php_code_sniffer: | |
standard: "PSR2" | |
allowed_errors: -1 | |
allowed_warnings: -1 | |
php_cpd: | |
allow_failures: true | |
php_loc: | |
directory: "application" | |
php_docblock_checker: | |
path: "application" | |
allowed_warnings: 900 | |
skip_classes: true | |
php_parallel_lint: | |
ignore: | |
- "database" | |
- "logs" | |
- "vendor" | |
complete: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment