Skip to content

Commit

Permalink
Trying to fix error in PHP5.6 by increasing PHP memory limit to unlim…
Browse files Browse the repository at this point in the history
…ited: `-1`
  • Loading branch information
David Sanchez committed Oct 4, 2018
1 parent 47cb08e commit abef6c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ matrix:
env: SYMFONY_VERSION=@dev;ASSETIC=skip

before_install:
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then phpenv config-add travis.php.ini; fi
- if [[ $TRAVIS_PHP_VERSION != '7.0' && $TRAVIS_PHP_VERSION != '7.1' && $TRAVIS_PHP_VERSION != '7.2' ]]; then phpenv config-rm xdebug.ini; fi
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
Expand Down
1 change: 1 addition & 0 deletions travis.php.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
memory_limit = -1

0 comments on commit abef6c2

Please sign in to comment.