Skip to content

Commit

Permalink
Merge pull request #65 from norzechowicz/update-dependencies
Browse files Browse the repository at this point in the history
Updated dependnecies to support symfony3 components
  • Loading branch information
Norbert Orzechowicz committed Jan 24, 2016
2 parents ef2cd90 + 3cef653 commit 008529d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
26 changes: 10 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
language: php

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

env:
- COMPOSER_FLAGS=""
- COMPOSER_FLAGS="--prefer-lowest"

matrix:
exclude:
- php: hhvm
env: COMPOSER_FLAGS="--prefer-lowest"
include:
- php: 5.4
env:
- DEPENDENCIES='low'
- php: 5.5
- php: 5.6
- php: 7.0
env: COMPOSER_FLAGS="--prefer-lowest"
- php: hhvm

sudo: false

before_script:
- composer --prefer-source --dev ${COMPOSER_FLAGS} update
- composer self-update
- if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;
- if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi;

script: bin/phpunit

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"require": {
"php": ">=5.4",
"doctrine/common": "~2.4",
"symfony/property-access": "~2.3",
"symfony/yaml": "~2.2",
"symfony/property-access": "^2.3|^3.0",
"symfony/yaml": "^2.2|^3.0",
"fsi/reflection": "0.9.*",
"fsi/metadata": "~0.9.2",
"fsi/property-observer": "~0.9.2",
Expand Down

0 comments on commit 008529d

Please sign in to comment.