Skip to content

Commit 6901514

Browse files
committed
Allow future versions of Symfony components
Pull in PHP nightly (with allowed to fail and fast finish)
1 parent a4cfdbe commit 6901514

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

.travis.yml

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

33
php:
4-
- '5.4'
5-
- '5.5'
6-
- '5.6'
7-
- '7.0'
8-
- '7.1'
9-
- '7.2'
4+
- 5.4
5+
- 5.5
6+
- 5.6
7+
- 7.0
8+
- 7.1
9+
- 7.2
10+
- hhvm
11+
- nightly
1012

1113
env:
1214
- COMPOSER_OPTIONS="--prefer-source"
1315
- COMPOSER_OPTIONS="--prefer-source --prefer-lowest"
1416

17+
matrix:
18+
allow_failures:
19+
- php: hhvm
20+
- php: nightly
21+
22+
fast_finish: true
23+
1524
install:
1625
- git clone https://github.com/sstephenson/bats.git /tmp/bats
1726
- mkdir -p /tmp/local

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"description": "Shell completion for Symfony Console based scripts",
44
"license": "MIT",
55
"require": {
6-
"symfony/console": "^2.5|3.*",
7-
"symfony/process": "^2.3|3.*",
6+
"symfony/console": ">=2.5",
7+
"symfony/process": ">=2.5",
88
"ext-simplexml": "*"
99
},
1010
"require-dev": {

0 commit comments

Comments
 (0)