24 lines
373 B
YAML
24 lines
373 B
YAML
sudo: false
|
|
|
|
language: php
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
- 7.2
|
|
- 7.3
|
|
- 7.4
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
- build/cache
|
|
|
|
install:
|
|
- composer install --prefer-dist
|
|
- mkdir -p build/cache
|
|
|
|
script:
|
|
- php vendor/bin/phpunit
|
|
- vendor/bin/php-cs-fixer --cache-file=build/cache/.php_cs.cache --diff --dry-run --stop-on-violation --verbose fix
|