Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/php.xml

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

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.7-labs
FROM php:8.4.8-fpm-bookworm
FROM php:8.4.10-fpm-bookworm

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

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

# Install and enable all necessary PHP extensions
RUN install-php-extensions \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile_dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.8-fpm-bookworm
FROM php:8.4.10-fpm-bookworm

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

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

# Enable all necessary PHP packages
RUN install-php-extensions \
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"config": {
"allow-plugins": true,
"platform": {
"php": "8.4.8"
"php": "8.4.10"
},
"sort-packages": true
},
Expand Down
29 changes: 15 additions & 14 deletions composer.lock

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

2 changes: 1 addition & 1 deletion tools/02_phpstan/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"config": {
"allow-plugins": true,
"platform": {
"php": "8.4.8"
"php": "8.4.10"
},
"preferred-install": {
"*": "dist"
Expand Down
17 changes: 9 additions & 8 deletions tools/02_phpstan/composer.lock

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

2 changes: 1 addition & 1 deletion tools/03_psalm/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"config": {
"allow-plugins": true,
"platform": {
"php": "8.4.8"
"php": "8.4.10"
},
"preferred-install": {
"*": "dist"
Expand Down
17 changes: 9 additions & 8 deletions tools/03_psalm/composer.lock

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

2 changes: 1 addition & 1 deletion tools/04_symplify/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"config": {
"allow-plugins": true,
"platform": {
"php": "8.4.8"
"php": "8.4.10"
},
"preferred-install": {
"*": "dist"
Expand Down
17 changes: 9 additions & 8 deletions tools/04_symplify/composer.lock

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

2 changes: 1 addition & 1 deletion tools/05_infection/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"config": {
"allow-plugins": true,
"platform": {
"php": "8.4.8"
"php": "8.4.10"
},
"preferred-install": {
"*": "dist"
Expand Down
Loading
Loading