Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,23 @@ matrix:
dist: precise
- php: hhvm
install: composer require phpunit/phpunit:^5 --dev --no-interaction
- name: "Mac OS X"
os: osx
language: generic # no built-in php support
before_install:
- brew install php || brew install php # retry if it doesn't work on first try
- brew install composer
- name: "Windows"
os: windows
language: shell # no built-in php support
before_install:
- choco install php
- choco install composer
- export PATH="$(powershell -Command '("Process", "Machine" | % { [Environment]::GetEnvironmentVariable("PATH", $_) -Split ";" -Replace "\\$", "" } | Select -Unique | % { cygpath $_ }) -Join ":"')"
allow_failures:
- php: hhvm
- os: osx
- os: windows

sudo: false

Expand Down