Skip to content

Commit 3e9e7e4

Browse files
committed
Merge branch 'travis-improvements' of https://github.com/duncan3dc/symfony-console-completion into duncan3dc-travis-improvements
2 parents 91e211a + c6fd5a2 commit 3e9e7e4

File tree

4 files changed

+17
-923
lines changed

4 files changed

+17
-923
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: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
language: php
22

33
php:
4-
- 5.5
5-
- 5.4
64
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- 7.0
79

8-
before_script:
10+
env:
11+
- COMPOSER_OPTS=""
12+
- COMPOSER_OPTS="--prefer-lowest"
13+
14+
before_install:
915
- sudo apt-get update -qq
1016
- sudo apt-get install -y bash zsh
17+
18+
install:
1119
- composer self-update
12-
- composer install --dev --prefer-dist
20+
- composer update $COMPOSER_OPTS
21+
22+
script:
23+
- 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)