mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
976a3ef4ec
Prevent Composer from suggesting
19 lines
323 B
YAML
19 lines
323 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.5.9
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
|
|
sudo: false
|
|
|
|
before_install:
|
|
- cp .env.example .env
|
|
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
|
|
|
|
install: travis_retry composer install --no-interaction --no-scripts --prefer-source --no-suggest
|
|
|
|
script: vendor/bin/phpunit
|