Skip to content

Add Symfony 3 support, test against multiple symfony versions #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2016
Merged
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
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ php:
env:
global:
- TEST_COMMAND="composer test"
matrix:
- SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=2.7.*

branches:
except:
Expand All @@ -25,12 +29,16 @@ matrix:
fast_finish: true
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci" SYMFONY_VERSION=2.7.*
exclude:
- php: 5.4
env: SYMFONY_VERSION=3.0.*

before_install:
- travis_retry composer self-update

install:
- travis_retry composer require symfony/symfony:${SYMFONY_VERSION} --no-update
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction

script:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Change Log


## UNRELEASED

### Added

- Support for Symfony 3
- Tests for various Symfony versions

### Removed

- Symfony 2.3 support


## 1.0.0 - 2016-05-05

- Initial release
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"require": {
"php": ">=5.4",
"symfony/stopwatch": "^2.3",
"symfony/stopwatch": "^2.7|^3.0",
"php-http/client-common": "^1.1"
},
"require-dev": {
Expand Down