Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

env:
- SYMFONY_VERSION=2.1.*
- SYMFONY_VERSION=2.2.*
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=dev-master

before_script:
Expand All @@ -26,5 +26,4 @@ notifications:
matrix:
allow_failures:
- env: SYMFONY_VERSION=dev-master
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see the interest of keeping this in the allow failures section as almost no one look at them.
I prefer that the tests break and that we know that we will have to change something.

- php: 5.6
- php: hhvm
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
],
"require": {
"php": ">=5.3.2",
"symfony/form": "~2.1",
"symfony/framework-bundle": "~2.1",
"symfony/security": "~2.1",
"symfony/twig-bundle": "~2.1"
"doctrine/collections": "^1.3",
"symfony/form": "^2.1|^3.0",
"symfony/framework-bundle": "^2.1|^3.0",
"symfony/security": "^2.1|^3.0",
"symfony/twig-bundle": "^2.1|^3.0"
},
"suggest": {
"doctrine/doctrine-bundle": "dev-master",
Expand All @@ -35,5 +36,8 @@
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^3.0"
}
}