php-censor/phpci.yml

30 lines
645 B
YAML
Raw Normal View History

build_settings:
verbose: false
ignore:
- "vendor"
- "Tests"
- "PHPCI/Command" # PHPMD complains about un-used parameters, but they are required.
- "public/install.php" # PHPCS really doesn't like PHP mixed with HTML (and so it shouldn't)
2014-05-02 15:18:01 +02:00
setup:
composer:
action: "install"
prefer_dist: false
2014-05-02 15:18:01 +02:00
test:
php_mess_detector:
allowed_warnings: 0
php_code_sniffer:
standard: "PSR2"
allowed_warnings: 0
allowed_errors: 0
php_loc:
2014-05-02 15:03:22 +02:00
php_unit:
2014-05-08 18:02:24 +02:00
php_docblock_checker:
allowed_warnings: -1 # Allow unlimited warnings for now.
failure:
email:
committer: true
cc: ["php-ci@googlegroups.com"]