This repository was archived by the owner on Aug 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,19 +35,19 @@ notifications:
3535
3636before_script :
3737 - >
38- if [[ "$TRAVIS_PHP_VERSION" == "5.3" || "$TRAVIS_PHP_VERSION" = = "5.4" ]]; then
38+ if [[ "$TRAVIS_PHP_VERSION" = "5.3" || "$TRAVIS_PHP_VERSION" = "5.4" ]]; then
3939 echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4040 echo "apc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4141 echo "apc.slam_defense=0" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4242 pecl install igbinary > /dev/null;
4343 fi
4444 - >
45- if [[ "$TRAVIS_PHP_VERSION" == "5.5" || "$TRAVIS_PHP_VERSION" = = "5.6"]]; then
45+ if [[ "$TRAVIS_PHP_VERSION" = "5.5" || "$TRAVIS_PHP_VERSION" = "5.6"]]; then
4646 echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4747 echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini;
4848 fi
4949 - >
50- if [[ "$TRAVIS_PHP_VERSION" == "hhv*" ]]; then
50+ if [[ "$TRAVIS_PHP_VERSION" = "hhv*" ]]; then
5151 echo "extension = memcache.so" >> /etc/hhvm/php.ini;
5252 echo "extension = redis.so" >> /etc/hhvm/php.ini;
5353 fi
You can’t perform that action at this time.
0 commit comments