mirror of
https://github.com/stan220/WildcardEventDispatcher.git
synced 2026-09-08 16:28:35 +00:00
25 lines
345 B
YAML
25 lines
345 B
YAML
language: php
|
|
dist: trusty
|
|
sudo: false
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
- 7.2
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 5.3
|
|
dist: precise
|
|
env: COMPOSER_FLAGS="--prefer-lowest"
|
|
|
|
before_script:
|
|
- composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS}
|
|
|
|
script:
|
|
- vendor/bin/phpunit -v
|