Repository Config
filter:
excluded_paths:
- 'tests/*'
tools:
php_code_sniffer:
enabled: true
config:
standard: PSR2
checks:
php:
uppercase_constants: true
simplify_boolean_return: true
remove_extra_empty_lines: true
properties_in_camelcaps: true
prefer_while_loop_over_for_loop: true
check_method_contracts:
verify_interface_like_constraints: true
verify_documented_constraints: true
verify_parent_constraints: true
classes_in_camel_caps: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
build:
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=some-file'
coverage:
file: 'some-file'
format: 'clover'