Skip to content

Commit 31589ad

Browse files
author
Reinier Kip
committed
Require symfony/event-dispatcher >=2.4, since the library requires this
1 parent e52e3f3 commit 31589ad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,23 @@ cache:
1414
before_script:
1515
- composer self-update
1616
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/config:${SYMFONY_VERSION} symfony/dependency-injection:${SYMFONY_VERSION} symfony/event-dispatcher:${SYMFONY_VERSION} symfony/http-kernel:${SYMFONY_VERSION} symfony/framework-bundle:${SYMFONY_VERSION}; fi;
17+
- if [ "$SYMFONY_EVENT_DISPATCHER_VERSION" != "" ]; then composer require --no-update symfony/event-dispatcher:${SYMFONY_EVENT_DISPATCHER_VERSION}; fi;
1718
- composer install --no-interaction --prefer-source --dev
1819

1920
script: phpunit --verbose
2021

2122
matrix:
2223
include:
2324
- php: 5.6
24-
env: [SYMFONY_VERSION="2.3.*"]
25+
env: [SYMFONY_VERSION="2.3.*", SYMFONY_EVENT_DISPATCHER_VERSION="2.4.*"]
2526
- php: 5.6
2627
env: [SYMFONY_VERSION="2.7.*"]
2728
- php: 5.6
2829
env: [SYMFONY_VERSION="2.8.*"]
2930
- php: 5.6
3031
env: [SYMFONY_VERSION="3.0.*"]
3132
- php: 7.0
32-
env: [SYMFONY_VERSION="2.3.*"]
33+
env: [SYMFONY_VERSION="2.3.*", SYMFONY_EVENT_DISPATCHER_VERSION="2.4.*"]
3334
- php: 7.0
3435
env: [SYMFONY_VERSION="2.7.*"]
3536
- php: 7.0

0 commit comments

Comments
 (0)