Skip to content
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

Allow v0.7 of Imagine Bundle #935

Closed
wants to merge 3 commits into from
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
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ cache:
env:
global:
- SYMFONY_VERSION=2.8.x
- IMAGINE_VERSION=~0.6
- SYMFONY_DEPRECATIONS_HELPER=weak

matrix:
Expand All @@ -42,6 +43,24 @@ matrix:
env: SYMFONY_VERSION=3.3.x-dev WITH_ENQUEUE=true
- php: 7.1
env: SYMFONY_VERSION=dev-master
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest" IMAGINE_VERSION=~0.7
- php: 5.6
env: SYMFONY_VERSION=2.3.x-dev IMAGINE_VERSION=~0.7
- php: 5.6
env: SYMFONY_VERSION=2.7.x-dev IMAGINE_VERSION=~0.7
- php: 5.6
env: SYMFONY_VERSION=2.8.x-dev WITH_ENQUEUE=true IMAGINE_VERSION=~0.7
- php: 7.1
env: SYMFONY_VERSION=3.0.x-dev IMAGINE_VERSION=~0.7
- php: 7.1
env: SYMFONY_VERSION=3.1.x-dev IMAGINE_VERSION=~0.7
- php: 7.1
env: SYMFONY_VERSION=3.2.x-dev IMAGINE_VERSION=~0.7
- php: 7.1
env: SYMFONY_VERSION=3.3.x-dev WITH_ENQUEUE=true IMAGINE_VERSION=~0.7
- php: 7.1
env: SYMFONY_VERSION=dev-master IMAGINE_VERSION=~0.7
allow_failures:
- php: 7.1
env: SYMFONY_VERSION=3.3.x-dev
Expand All @@ -54,6 +73,7 @@ before_install:
- if [ "${TRAVIS_PHP_VERSION}" == "5.3" ]; then composer remove --no-update --dev satooshi/php-coveralls; fi;
- if [ "${SYMFONY_VERSION:0:3}" == "2.3" ]; then composer remove --no-update --dev friendsofphp/php-cs-fixer; fi;
- if [ "${SYMFONY_VERSION:-x}" != "x" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
- composer require --dev --no-update imagine/Imagine:${IMAGINE_VERSION}
- if [ "${TRAVIS_PHP_VERSION}" != "hhvm" ] && [ "${TRAVIS_PHP_VERSION:0:3}" != "5.3" ]; then composer require --no-update --dev league/flysystem:~1.0; fi;
- if [ "${TRAVIS_PHP_VERSION}" != "hhvm" ] && [ "${TRAVIS_PHP_VERSION:0:1}" != "7" ]; then yes "" | pecl -q install -f mongo; composer require --no-update --dev doctrine/mongodb-odm:~1.0; fi;
- if [ "${TRAVIS_PHP_VERSION}" != "hhvm" ] && [ "${TRAVIS_PHP_VERSION:0:1}" == "7" ]; then yes "" | pecl -q install -f mongodb; travis_retry composer require --dev alcaeus/mongo-php-adapter:~1.0; composer require --no-update --dev doctrine/mongodb-odm:~1.0; fi
Expand All @@ -68,4 +88,5 @@ script:
after_script:
- if [ "${TRAVIS_PHP_VERSION}" != "5.3" ]; then bin/coveralls -vvv; fi;


...
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"require": {
"php": "^5.3.9|^7.0",
"imagine/Imagine": "^0.6.3,<0.7",
"imagine/Imagine": "^0.6.3,<0.8",
"symfony/asset": "~2.3|~3.0",
"symfony/filesystem": "~2.3|~3.0",
"symfony/finder": "~2.3|~3.0",
Expand Down