Skip to content

Commit

Permalink
[travis] Enable redis and PHP 5.5. and 7
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarlium committed Mar 13, 2015
1 parent cac5539 commit 145e7fd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ language: php

php:
- 5.3
- 5.4
- 5.5
- 7

services:
- redis-server

cache:
directories:
Expand All @@ -27,7 +31,7 @@ before_install:
install:
- npm install
before_script:
- phpenv config-add php.ini
- if [ -f php_$TRAVIS_PHP_VERSION.ini ]; then phpenv config-add php_$TRAVIS_PHP_VERSION.ini; fi
- mkdir -p build/logs

script:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

2.0.2
-----

* Improved: `PredisCache` now handles both serialized and unserialized data on fetch

2.0.1
-----

Expand Down
1 change: 1 addition & 0 deletions php.ini → php_5.3.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
extension="memcached.so"
extension="apc.so"
extension="redis.so"
2 changes: 2 additions & 0 deletions php_5.5.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extension="memcached.so"
extension="redis.so"
2 changes: 2 additions & 0 deletions php_7.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extension="memcached.so"
extension="redis.so"

0 comments on commit 145e7fd

Please sign in to comment.