Skip to content

Commit a6e8cf7

Browse files
committed
Merge pull request #27 from merk/matejvelikonja-more-tests
Rebased #26
2 parents 924e3f2 + dd38b1b commit a6e8cf7

File tree

2 files changed

+27
-7
lines changed

2 files changed

+27
-7
lines changed

.travis.yml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
language: php
22

33
php:
4-
- 5.4
4+
- 5.3
55
- 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
622

723
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
1028

1129
script:
1230
- phpunit --coverage-text --colors

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@
1515
"php": ">=5.3.2",
1616

1717
"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"
2020
},
2121
"require-dev": {
22-
"symfony/symfony": "~2.2",
22+
"symfony/symfony": "~2.3",
2323
"doctrine/orm": "~2.3",
2424
"doctrine/doctrine-bundle": "~1.2",
2525
"components/qunit": "*",
26-
"components/jquery": "*"
26+
"components/jquery": "*",
27+
"robloach/component-installer": "~0.1.1",
28+
"symfony/phpunit-bridge": "^2.7"
2729
},
2830
"extra": {
2931
"branch-alias": {

0 commit comments

Comments
 (0)