Skip to content

Commit 8dce8bf

Browse files
authored
Merge pull request #3017 from tarlepp/chore(env)/php-update
Chore(env) - PHP update
2 parents 86ef3d2 + 5756f8e commit 8dce8bf

File tree

27 files changed

+166
-153
lines changed

27 files changed

+166
-153
lines changed

.idea/php.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1.7-labs
2-
FROM php:8.4.8-fpm-bookworm
2+
FROM php:8.4.10-fpm-bookworm
33

44
ENV APP_ENV prod
55
ENV APP_DEBUG 0
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
&& rm -rf /var/lib/apt/lists/*
2020

2121
# Copy the install-php-extensions (Easily install PHP extension in official PHP Docker containers)
22-
COPY --from=mlocati/php-extension-installer:2.8.2 /usr/bin/install-php-extensions /usr/local/bin/
22+
COPY --from=mlocati/php-extension-installer:2.8.4 /usr/bin/install-php-extensions /usr/local/bin/
2323

2424
# Install and enable all necessary PHP extensions
2525
RUN install-php-extensions \

Dockerfile_dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.4.8-fpm-bookworm
1+
FROM php:8.4.10-fpm-bookworm
22

33
# Let's use bash as a default shell with login each time
44
SHELL ["/bin/bash", "--login", "-c"]
@@ -58,7 +58,7 @@ ENV LANGUAGE en_US:en
5858
ENV LC_ALL en_US.UTF-8
5959

6060
# Copy the install-php-extensions (Easily install PHP extension in official PHP Docker containers)
61-
COPY --from=mlocati/php-extension-installer:2.8.2 /usr/bin/install-php-extensions /usr/local/bin/
61+
COPY --from=mlocati/php-extension-installer:2.8.4 /usr/bin/install-php-extensions /usr/local/bin/
6262

6363
# Enable all necessary PHP packages
6464
RUN install-php-extensions \

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"config": {
9797
"allow-plugins": true,
9898
"platform": {
99-
"php": "8.4.8"
99+
"php": "8.4.10"
100100
},
101101
"sort-packages": true
102102
},

composer.lock

Lines changed: 15 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/02_phpstan/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"config": {
1616
"allow-plugins": true,
1717
"platform": {
18-
"php": "8.4.8"
18+
"php": "8.4.10"
1919
},
2020
"preferred-install": {
2121
"*": "dist"

tools/02_phpstan/composer.lock

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/03_psalm/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"config": {
1616
"allow-plugins": true,
1717
"platform": {
18-
"php": "8.4.8"
18+
"php": "8.4.10"
1919
},
2020
"preferred-install": {
2121
"*": "dist"

tools/03_psalm/composer.lock

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/04_symplify/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"config": {
1515
"allow-plugins": true,
1616
"platform": {
17-
"php": "8.4.8"
17+
"php": "8.4.10"
1818
},
1919
"preferred-install": {
2020
"*": "dist"

0 commit comments

Comments
 (0)