Skip to content

Commit b0bec4c

Browse files
committed
Merge pull request #54 from stecman/duncan3dc-travis-improvements
Merge #34 with PHP version and dep combinations adjusted
2 parents 91e211a + c7c1179 commit b0bec4c

File tree

4 files changed

+18
-925
lines changed

4 files changed

+18
-925
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ vendor
22
.idea
33
/build/
44
phpunit.xml
5+
/composer.lock

.travis.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
language: php
22

3-
php:
4-
- 5.5
5-
- 5.4
6-
- 5.3
3+
matrix:
4+
include:
5+
- php: 5.3
6+
- php: 5.4
7+
- php: 5.5
8+
env: COMPOSER_OPTS="--prefer-lowest"
9+
- php: 5.6
10+
- php: 7.0
11+
- php: hhvm
712

8-
before_script:
13+
before_install:
914
- sudo apt-get update -qq
1015
- sudo apt-get install -y bash zsh
16+
17+
install:
1118
- composer self-update
12-
- composer install --dev --prefer-dist
19+
- composer update $COMPOSER_OPTS
20+
21+
script:
22+
- phpunit tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"symfony/console": "~2.2"
1414
},
1515
"require-dev": {
16-
"phpunit/phpunit": "~4.1"
16+
"phpunit/phpunit": "~4.4"
1717
},
1818
"autoload": {
1919
"psr-4": {

0 commit comments

Comments
 (0)