We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6da68a1 commit 227f190Copy full SHA for 227f190
.travis.yml
@@ -31,3 +31,8 @@ after_success:
31
32
after_script:
33
- make down PHP=$(phpenv version-name)
34
+
35
+matrix:
36
+ allow_failures:
37
+ - php: 7.4
38
+ - php: 8.0
Dockerfile
@@ -6,7 +6,7 @@ WORKDIR /var/www
6
7
RUN apt-get update
8
RUN apt-get install -y zip unzip zlib1g-dev
9
-RUN docker-php-ext-install zip
+RUN if [[ `php-config --vernum` -ge 73000 ]]; then docker-php-ext-install zip; fi
10
RUN docker-php-ext-install pcntl
11
RUN curl -sS https://getcomposer.org/installer | php
12
RUN mv composer.phar /usr/local/bin/composer
0 commit comments