We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4d80b0 commit 3cdcd13Copy full SHA for 3cdcd13
.travis.yml
@@ -3,10 +3,14 @@ language: php
3
php:
4
- 5.3
5
- 5.4
6
+ - 5.5
7
+
8
+env:
9
+ - MONGO_VERSION=1.3.7
10
11
before_script:
- - pecl -q install mongo && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
12
+ - pecl -q install -f mongo-${MONGO_VERSION} && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
13
- curl -s http://getcomposer.org/installer | php
- - php composer.phar --dev install
14
+ - php composer.phar install --dev --prefer-dist --no-interaction
15
16
phpunit: phpunit --coverage-text
0 commit comments