Skip to content

Commit

Permalink
Fix deps in build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaynton committed Feb 3, 2020
1 parent c839b37 commit 59a1054
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
language: php

sudo: false

dist: trusty

git:
Expand All @@ -18,20 +16,24 @@ php:
- nightly

env:
- DEPS=latest
- DEPS=lowest
- DEPS=--prefer-lowest
- DEPS=

jobs:
include:
- dist: precise
php: 5.3
env: DEPS=
- dist: precise
php: 5.3
env: DEPS=--prefer-lowest
fast_finish: true
allow_failures:
- php: nightly

before_script:
- composer self-update
- composer update --prefer-$DEPS
- composer update $DEPS

script:
- vendor/bin/composer test

0 comments on commit 59a1054

Please sign in to comment.