Skip to content

Commit

Permalink
Upgrade to php 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalchevrel committed Oct 15, 2023
1 parent 7befff5 commit 2b640c6
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 53 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm-alpine3.18 as builder
FROM php:8.2-fpm-alpine3.18 as builder

RUN apk update && \
apk upgrade
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN cd /app && \

###

FROM php:8.1-fpm-alpine3.18 as runner
FROM php:8.2-fpm-alpine3.18 as runner

RUN apk update && \
apk upgrade && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The requirements are very simple, no database, no framework.

- Linux (should work fine on macOS and Windows too, but I didn't test it)

- PHP >=8.1 with the `ext-mbstring`, `ext-intl`, `ext-curl`, `ext-dom` extensions
- PHP >=8.2 with the `ext-mbstring`, `ext-intl`, `ext-curl`, `ext-dom` extensions

- [Composer](https://getcomposer.org/) to install dependencies

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"php": "~8.1.0",
"php": "~8.2.0",
"mozillal10n/json": "~0.1",
"twig/twig": "^3.0",
"twbs/bootstrap": "^5.2",
Expand Down
96 changes: 47 additions & 49 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2b640c6

Please sign in to comment.