https://github.com/dingo/api
Raw File
Tip revision: 8beb74dd307770c909f0474e26a1004099ac78bd authored by Thilanga Pitigala on 20 September 2017, 15:57:14 UTC
Fixed missing abstract methods within stubs (#1453)
Tip revision: 8beb74d
.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.0
    - php: 7.1
      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