2016-04-10 09:50:24 +00:00
|
|
|
language: php
|
2016-06-30 21:42:45 +00:00
|
|
|
|
2016-07-01 20:05:20 +00:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
2016-06-30 21:42:45 +00:00
|
|
|
|
2016-07-01 20:05:20 +00:00
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
php: '7.0'
|
2016-06-30 21:42:45 +00:00
|
|
|
|
2016-07-01 20:05:20 +00:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode7.3
|
|
|
|
language: generic
|
|
|
|
env:
|
|
|
|
- _OSX=10.11
|
|
|
|
- _PHP: php70
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then /usr/bin/env bash build/prepare_osx_env.sh ; fi
|
|
|
|
|
|
|
|
install:
|
|
|
|
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then /usr/bin/env bash tools/handle_brew_pkg.sh "${_PHP}" ; fi
|
|
|
|
- curl -s http://getcomposer.org/installer | php
|
|
|
|
- php composer.phar install --dev --no-interaction --ignore-platform-reqs
|
2016-06-30 21:42:45 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
- bin/phpunit
|