12 lines
198 B
YAML
12 lines
198 B
YAML
language: php
|
|
sudo: false
|
|
php:
|
|
- 7.0
|
|
- 7.1
|
|
|
|
before_script:
|
|
- composer install --dev
|
|
- composer update -o
|
|
|
|
script: phpunit --bootstrap tests/bootstrap.php --configuration phpunit.xml tests
|