.travis.yml 423 Bytes
Newer Older
1 2 3 4
language: php

php:
  - 7
Nicolas Widart's avatar
Nicolas Widart committed
5
  - 7.1
6 7 8 9 10 11

cache:
  directories:
    - $HOME/.composer/cache

env:
Nicolas Widart's avatar
Nicolas Widart committed
12
  - LARAVEL_VERSION="~5.5" TESTBENCH_VERSION="~3.5"
13 14

before_script:
15
  - phpenv config-rm xdebug.ini
16 17
  - travis_retry composer self-update
  - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
18 19
  - chmod +x travis.sh
  - ./travis.sh
20
  - php artisan clear-compiled
21

22
script: vendor/bin/phpunit
23 24 25

sudo: false