20 lines
206 B
YAML
20 lines
206 B
YAML
language: php
|
|
|
|
before_install:
|
|
- pear upgrade pear
|
|
|
|
install:
|
|
- pear install package.xml
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
- 7.2
|
|
|
|
script:
|
|
- composer install
|
|
- vendor/bin/phpunit tests/
|