build: environment: php: version: 7.2.17 ini: 'date.timezone': 'Asia/Tokyo' dependencies: before: - composer require phpunit/phpunit:5.* tests: override: - command: 'vendor/bin/phpunit --coverage-clover=some-file' coverage: file: 'some-file' format: 'clover'
filter: excluded_paths: - 'tests/*' checks: php: true coding_style: php: spaces: general: linefeed_character: return-newline around_operators: additive: false multiplicative: false concatenation: true negation: true