Skip to content

Commit fd3f024

Browse files
committed
Remove deprecated ENV syntax usage
1 parent ff1f2ef commit fd3f024

11 files changed

+18
-18
lines changed

behat3.4-sqlite.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG PHP_VERSION=7.2
77
FROM chekote/behat3.4:php$PHP_VERSION
88

9-
ENV MIN_PHP_VERSION '5.3.3'
9+
ENV MIN_PHP_VERSION='5.3.3'
1010

1111
RUN set -eu; \
1212
#

behat3.4.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG PHP_VERSION=7.2
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV MIN_PHP_VERSION '5.3.3'
9+
ENV MIN_PHP_VERSION='5.3.3'
1010

1111
RUN set -eu; \
1212
#

composer.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG PHP_VERSION=7.2
77
FROM chekote/php:${PHP_VERSION}
88

9-
ENV MIN_PHP_VERSION '5.3.2'
9+
ENV MIN_PHP_VERSION='5.3.2'
1010

1111
RUN set -eu; \
1212
#

laravel10.x.docker

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
ARG PHP_VERSION=8.1
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV SUPPORTED_LARAVEL_VERSION '10.x'
10-
ENV MIN_PHP_VERSION '8.1'
11-
ENV MAX_PHP_VERSION '8.3.999'
9+
ENV SUPPORTED_LARAVEL_VERSION='10.x'
10+
ENV MIN_PHP_VERSION='8.1'
11+
ENV MAX_PHP_VERSION='8.3.999'
1212

1313
RUN set -eu; \
1414
#

laravel11.x.docker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
ARG PHP_VERSION=8.2
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV SUPPORTED_LARAVEL_VERSION '11.x'
10-
ENV MIN_PHP_VERSION '8.2'
9+
ENV SUPPORTED_LARAVEL_VERSION='11.x'
10+
ENV MIN_PHP_VERSION='8.2'
1111

1212
RUN set -eu; \
1313
#

laravel8.x.docker

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
ARG PHP_VERSION=7.4
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV SUPPORTED_LARAVEL_VERSION '8.x'
10-
ENV MIN_PHP_VERSION '7.3'
11-
ENV MAX_PHP_VERSION '8.1.999'
9+
ENV SUPPORTED_LARAVEL_VERSION='8.x'
10+
ENV MIN_PHP_VERSION='7.3'
11+
ENV MAX_PHP_VERSION='8.1.999'
1212

1313
RUN set -eu; \
1414
#

laravel9.x.docker

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
ARG PHP_VERSION=8.0
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV SUPPORTED_LARAVEL_VERSION '9.x'
10-
ENV MIN_PHP_VERSION '8.0'
11-
ENV MAX_PHP_VERSION '8.2.999'
9+
ENV SUPPORTED_LARAVEL_VERSION='9.x'
10+
ENV MIN_PHP_VERSION='8.0'
11+
ENV MAX_PHP_VERSION='8.2.999'
1212

1313
RUN set -eu; \
1414
#

phpunit10.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG PHP_VERSION=8.1
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV MIN_PHP_VERSION '8.1'
9+
ENV MIN_PHP_VERSION='8.1'
1010

1111
RUN set -eu; \
1212
#

phpunit11.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG PHP_VERSION=8.2
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV MIN_PHP_VERSION '8.2'
9+
ENV MIN_PHP_VERSION='8.2'
1010

1111
RUN set -eu; \
1212
#

phpunit8.docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG PHP_VERSION=7.4
77
FROM chekote/composer:php$PHP_VERSION
88

9-
ENV MIN_PHP_VERSION '7.2'
9+
ENV MIN_PHP_VERSION='7.2'
1010

1111
RUN set -eu; \
1212
#

0 commit comments

Comments
 (0)