Skip to content

Commit f96c0b5

Browse files
j4nr6ndkarlovi
authored andcommitted
Address a few other comments
1 parent dfdee11 commit f96c0b5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ php:
99
- hhvm
1010
- 7.0
1111
- 7.1
12+
- 7.2
1213

1314
service:
1415
- mongodb
@@ -24,7 +25,7 @@ matrix:
2425
- php: 5.6
2526
env: SYMFONY_VERSION=3.0.* COVERAGE=true
2627
# test the latest release (including beta releases)
27-
- php: 7.1
28+
- php: 7.2
2829
env: DEPENDENCIES=beta
2930
allow_failures:
3031
- php: hhvm
@@ -39,7 +40,7 @@ before_script:
3940
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;
4041
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "5." ]]; then yes '' | pecl -q install -f mongo-stable; fi
4142
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then pecl install -f mongodb-stable; fi
42-
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then composer require "alcaeus/mongo-php-adapter=^1.0.0" --ignore-platform-reqs; fi
43+
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then composer config "platform.ext-mongo" "1.6.16" && composer require alcaeus/mongo-php-adapter; fi
4344
- composer self-update
4445
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
4546
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^5.3.3|^7.0",
19+
"php": "^5.4|^7.0",
2020
"friendsofsymfony/oauth2-php": "~1.1",
2121
"symfony/framework-bundle": "~2.8|~3.0|^4.0",
2222
"symfony/security-bundle": "~2.8|~3.0|^4.0",

0 commit comments

Comments
 (0)