1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-29 16:50:07 +02:00

Fix: Enable imagick extension on PHP5.4

This commit is contained in:
Andreas Möller
2016-01-02 14:56:11 +01:00
parent e6acb1609c
commit efcd82a112

View File

@@ -19,6 +19,7 @@ before_install:
- sudo apt-get update - sudo apt-get update
- sudo apt-get -y --reinstall install imagemagick - sudo apt-get -y --reinstall install imagemagick
- printf "\n" | pecl install imagick-beta - printf "\n" | pecl install imagick-beta
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.4" ]]; then echo "extension = imagick.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi
before_script: before_script:
- composer self-update - composer self-update