https://github.com/dingo/api
Raw File
Tip revision: f77539eb1ae972a1a8fe9fab9be387bd3951a93f authored by Max on 24 March 2019, 13:39:12 UTC
Merge pull request #1641 from specialtactics/feature/add-route-url-generstor-to-api-facade
Tip revision: f77539e
.travis.yml
language: php

sudo: false
dist: trusty

env:
  global:
    - setup=basic
    - xdebug=true

# HHVM is no longer supported on Ubuntu Precise. Please consider using Trusty with `dist: trusty`.
dist: trusty

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

matrix:
  include:
    - php: 7.1
      env: xdebug=false
    - php: 7.2
      env: xdebug=false
    - php: 7.3
      env: xdebug=false

before_install:
  - if [[ $xdebug = 'true' ]] ; then phpenv config-rm xdebug.ini; fi

install:
  - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction --no-suggest; fi
  - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable; fi
  - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable --prefer-lowest; fi

script:
  - vendor/bin/phpunit
back to top