File tree Expand file tree Collapse file tree 9 files changed +18
-18
lines changed
Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 11# jsunier/php-symfony-test
22
3- Docker image to run PHPUnit with Symfony 3.x/4.x on PHP ` 7.1 ` /` 7.2 ` /` 7.3 ` /` 7.4 ` .
3+ Docker image to run PHPUnit with Symfony 3.x/4.x/5.x on PHP ` 7.1 ` /` 7.2 ` /` 7.3 ` /` 7.4 ` .
44
55Docker container allowing you to build and test your PHP projects.
66
@@ -52,7 +52,7 @@ List of PHP extensions installed:
5252| ` soap ` | ✅ | ✅ | ✅ | ✅ |
5353| ` mcrypt ` | ❌ | ❌ | ❌ | ❌ |
5454| ` oci8 ` | ❌ | ❌ | ❌ | ❌ |
55- | ` redis ` | ❌ | ❌ | ❌ | ❌ |
55+ | ` redis ` | ✅ | ✅ | ✅ | ✅ |
5656
5757# Default configurations
5858
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212 docker-php-ext-install mbstring pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313 docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1414 docker-php-ext-install gd && \
15- pecl install imagick xdebug-2.6.1 && \
16- docker-php-ext-enable imagick xdebug && \
15+ pecl install imagick xdebug-2.6.1 redis && \
16+ docker-php-ext-enable imagick xdebug redis && \
1717 apt-get clean
1818
1919COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313 docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414 docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1515 docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16- pecl install imagick xdebug-2.6.1 && \
17- docker-php-ext-enable imagick xdebug && \
16+ pecl install imagick xdebug-2.6.1 redis && \
17+ docker-php-ext-enable imagick xdebug redis && \
1818 apt-get clean
1919
2020COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212 docker-php-ext-install mbstring pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313 docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1414 docker-php-ext-install gd && \
15- pecl install imagick xdebug-2.6.1 && \
16- docker-php-ext-enable imagick xdebug && \
15+ pecl install imagick xdebug-2.6.1 redis && \
16+ docker-php-ext-enable imagick xdebug redis && \
1717 apt-get clean
1818
1919COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313 docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414 docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1515 docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16- pecl install imagick xdebug-2.6.1 && \
17- docker-php-ext-enable imagick xdebug && \
16+ pecl install imagick xdebug-2.6.1 redis && \
17+ docker-php-ext-enable imagick xdebug redis && \
1818 apt-get clean
1919
2020COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212 docker-php-ext-install mbstring pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313 docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1414 docker-php-ext-install gd && \
15- pecl install imagick xdebug-2.7.1 && \
16- docker-php-ext-enable imagick xdebug && \
15+ pecl install imagick xdebug-2.7.1 redis && \
16+ docker-php-ext-enable imagick xdebug redis && \
1717 apt-get clean
1818
1919COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313 docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414 docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ && \
1515 docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16- pecl install imagick xdebug-2.7.1 && \
17- docker-php-ext-enable imagick xdebug && \
16+ pecl install imagick xdebug-2.7.1 redis && \
17+ docker-php-ext-enable imagick xdebug redis && \
1818 apt-get clean
1919
2020COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1212 docker-php-ext-install pdo pdo_mysql zip iconv opcache bcmath sockets soap && \
1313 docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp && \
1414 docker-php-ext-install gd && \
15- pecl install imagick xdebug-2.9.0 && \
16- docker-php-ext-enable imagick xdebug && \
15+ pecl install imagick xdebug-2.9.0 redis && \
16+ docker-php-ext-enable imagick xdebug redis && \
1717 apt-get clean
1818
1919COPY php.ini $PHP_INI_DIR/php.ini
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN apt-get update && apt-get install -yqq git curl libmcrypt-dev libjpeg-dev li
1313 docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql && \
1414 docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp && \
1515 docker-php-ext-install pdo pdo_pgsql pgsql gd && \
16- pecl install imagick xdebug-2.9.0 && \
17- docker-php-ext-enable imagick xdebug && \
16+ pecl install imagick xdebug-2.9.0 redis && \
17+ docker-php-ext-enable imagick xdebug redis && \
1818 apt-get clean
1919
2020COPY php.ini $PHP_INI_DIR/php.ini
You can’t perform that action at this time.
0 commit comments