File tree 2 files changed +27
-7
lines changed 2 files changed +27
-7
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 5.4
4
+ - 5.3
5
5
- 5.5
6
+ - 5.6
7
+ - hhvm
8
+
9
+ matrix :
10
+ fast_finish : true
11
+ include :
12
+ - php : 5.3
13
+ env : deps="low"
14
+ - php : 5.6
15
+ env : SYMFONY_VERSION='2.3.*' SYMFONY_DEPRECATIONS_HELPER=strict
16
+ - php : 5.6
17
+ env : SYMFONY_VERSION='2.7.*'
18
+
19
+ env :
20
+ global :
21
+ - SYMFONY_DEPRECATIONS_HELPER=weak
6
22
7
23
before_script :
8
- - curl --silent http://getcomposer.org/installer | php
9
- - php composer.phar install --dev --no-interaction --prefer-source
24
+ - composer self-update
25
+ - if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony=$SYMFONY_VERSION; fi
26
+ - if [ "$deps" = "low" ]; then composer update --prefer-lowest; fi
27
+ - if [ "$deps" != "low" ]; then composer update --prefer-source; fi
10
28
11
29
script :
12
30
- phpunit --coverage-text --colors
Original file line number Diff line number Diff line change 15
15
"php" : " >=5.3.2" ,
16
16
17
17
"doctrine/common" : " ~2.3" ,
18
- "symfony/framework-bundle" : " ~2.2 " ,
19
- "symfony/form" : " ~2.2 "
18
+ "symfony/framework-bundle" : " ~2.3 " ,
19
+ "symfony/form" : " ~2.3 "
20
20
},
21
21
"require-dev" : {
22
- "symfony/symfony" : " ~2.2 " ,
22
+ "symfony/symfony" : " ~2.3 " ,
23
23
"doctrine/orm" : " ~2.3" ,
24
24
"doctrine/doctrine-bundle" : " ~1.2" ,
25
25
"components/qunit" : " *" ,
26
- "components/jquery" : " *"
26
+ "components/jquery" : " *" ,
27
+ "robloach/component-installer" : " ~0.1.1" ,
28
+ "symfony/phpunit-bridge" : " ^2.7"
27
29
},
28
30
"extra" : {
29
31
"branch-alias" : {
You can’t perform that action at this time.
0 commit comments