Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

Commit

Permalink
updated .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 22, 2015
1 parent 1411b68 commit ab7651c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
language: php

sudo: false

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

env:
globals:
- deps=no

before_script:
- composer install --prefer-source
- if [ "$deps" = "low" ]; then composer --prefer-lowest --prefer-stable update; fi;
- if [ "$deps" = "no" ]; then composer install; fi;

script: phpunit

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: hhvm
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: deps=low
- php: 7.0
fast_finish: true
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"autoload": {
"psr-0": { "Twig_Extensions_": "lib/" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
Expand Down

0 comments on commit ab7651c

Please sign in to comment.