Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit 75717c8

Browse files
committed
Merge pull request #1 from ETSGlobal/master
Support Symfony from version 2.3
2 parents 1af1e18 + e47ce07 commit 75717c8

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,22 @@ language: php
22

33
php:
44
- 5.3
5+
- 5.4
56
- 5.5
7+
- 5.6
8+
9+
env:
10+
- SYMFONY_VERSION="2.3.*"
11+
- SYMFONY_VERSION="2.4.*"
12+
- SYMFONY_VERSION="2.5.*"
13+
- SYMFONY_VERSION="2.6.*"
614

715
before_script:
8-
- composer install
16+
- composer require symfony/http-kernel:${SYMFONY_VERSION}
917

1018
script:
1119
- phpunit
1220

1321
branches:
1422
only:
15-
- master
23+
- master

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"require": {
16-
"symfony/http-kernel": "~2.4"
16+
"symfony/http-kernel": "~2.3"
1717
},
1818
"autoload": {
1919
"psr-0": {

0 commit comments

Comments
 (0)