File tree Expand file tree Collapse file tree 2 files changed +12
-17
lines changed Expand file tree Collapse file tree 2 files changed +12
-17
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,6 @@ language: php
3
3
sudo : false
4
4
5
5
php :
6
- - 5.4
7
- - 5.5
8
- - 5.6
9
- - hhvm
10
- - 7.0
11
6
- 7.1
12
7
- 7.2
13
8
@@ -17,28 +12,24 @@ service:
17
12
matrix :
18
13
fast_finish : true
19
14
include :
20
- - php : 5.6
21
- env : SYMFONY_VERSION=2.8 .*
22
- - php : 5.6
23
- env : SYMFONY_VERSION=3 .0.* COVERAGE=true
15
+ - php : 7.1
16
+ env : SYMFONY_VERSION=3.0 .*
17
+ - php : 7.2
18
+ env : SYMFONY_VERSION=4 .0.* COVERAGE=true
24
19
# test the latest release (including beta releases)
25
20
- php : 7.2
26
21
env : DEPENDENCIES=beta
27
- allow_failures :
28
- - php : hhvm
29
- - php : 7.0
30
22
31
23
cache :
32
24
directories :
33
25
- $HOME/.composer/cache/files
34
26
35
27
before_script :
36
- - if [ "$DEPENDENCIES" = "beta" ]; then composer config minimum-stability beta; fi;
37
- - 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;
38
- - if [[ ${TRAVIS_PHP_VERSION:0:2} == "5." ]]; then yes '' | pecl -q install -f mongo-stable; fi
39
- - if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then pecl install -f mongodb-stable; fi
40
- - if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then composer config "platform.ext-mongo" "1.6.16" && composer require alcaeus/mongo-php-adapter; fi
28
+ - phpenv config-rm xdebug.ini; echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini;
29
+ - pecl install -f mongodb-stable;
41
30
- composer self-update
31
+ - composer config "platform.ext-mongo" "1.6.16" && composer require alcaeus/mongo-php-adapter;
32
+ - if [ "$DEPENDENCIES" = "beta" ]; then composer config minimum-stability beta; fi;
42
33
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
43
34
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
44
35
Original file line number Diff line number Diff line change @@ -3,3 +3,7 @@ parameters:
3
3
- vendor/autoload.php
4
4
excludes_analyse :
5
5
- vendor/
6
+
7
+ # Propel stuff seems broken as-is, ignoring for now
8
+ - Propel/
9
+ - Tests/Propel/
You can’t perform that action at this time.
0 commit comments