Skip to content

Commit

Permalink
Downgrade to supported PHP versions
Browse files Browse the repository at this point in the history
According to PHP-CS-Fixer/PHP-CS-Fixer#6749
PHP 8.2 is currently not supported.
  • Loading branch information
stucki committed Jan 24, 2023
1 parent 82aa004 commit bcc74cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 3.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-alpine
FROM php:8.1-alpine

ENV PHP_CS_FIXER_VERSION 3.12.0
# hadolint ignore=DL3018
Expand Down
2 changes: 1 addition & 1 deletion 3.13/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-alpine
FROM php:8.1-alpine

ENV PHP_CS_FIXER_VERSION 3.13.2
# hadolint ignore=DL3018
Expand Down
2 changes: 1 addition & 1 deletion 3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8-alpine
FROM php:8.0-alpine

ENV PHP_CS_FIXER_VERSION 3.13.2
# hadolint ignore=DL3018
Expand Down
6 changes: 3 additions & 3 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ declare -A variants=(
)

declare -A php_version=(
['3']='8'
['3.13']='8.2'
['3.12']='8.2'
['3']='8.0'
['3.13']='8.1'
['3.12']='8.1'
['2']='8.0'
['2.19']='8.0'
['1']='7.1'
Expand Down

0 comments on commit bcc74cb

Please sign in to comment.