Skip to content

Commit fab1591

Browse files
committed
Upgrade to PHP 8.3.13, redis to 7.4.1 and PHPUnit to 11.4.3
1 parent cc5fffe commit fab1591

File tree

5 files changed

+51
-51
lines changed

5 files changed

+51
-51
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Docker compose PHP 8.3.12, Xdebug 3.3.2, Nginx 1.27.2, Redis 7.4.0 and MariaDB 11.5.2
1+
# Docker compose PHP 8.3.13, Xdebug 3.3.2, Nginx 1.27.2, Redis 7.4.1 and MariaDB 11.5.2
22

33
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg)
44
![nginx](https://img.shields.io/badge/nginx-1.27.2-brightgreen.svg)
5-
![php](https://img.shields.io/badge/PHP_FPM-8.3.12-brightgreen.svg)
5+
![php](https://img.shields.io/badge/PHP_FPM-8.3.13-brightgreen.svg)
66
![xdebug](https://img.shields.io/badge/Xdebug-3.3.2-brightgreen.svg)
7-
![phpunit](https://img.shields.io/badge/PHPUnit-11.3.6-brightgreen.svg)
8-
![redis](https://img.shields.io/badge/Redis-7.4.0-brightgreen.svg)
7+
![phpunit](https://img.shields.io/badge/PHPUnit-11.4.3-brightgreen.svg)
8+
![redis](https://img.shields.io/badge/Redis-7.4.1-brightgreen.svg)
99
![mariadb](https://img.shields.io/badge/MariaDB-11.5.2-brightgreen.svg)
1010

1111
# Goal of this project
@@ -15,12 +15,12 @@ The primary goal of this project is to create a streamlined and efficient develo
1515
# Services
1616

1717
* Easy setup with [docker compose](https://docs.docker.com/compose/) and [Dockerfile](https://docs.docker.com/engine/reference/builder/) under usage from [Docker](https://www.docker.com)
18-
* Uses [PHP 8.3.12](https://www.php.net) for better performance, lower CPU and memory usage
18+
* Uses [PHP 8.3.13](https://www.php.net) for better performance, lower CPU and memory usage
1919
* And [composer the dependency manager for PHP](https://getcomposer.org) to start easy your project
2020
* Built on the lightweight [nginx 1.27.2](https://nginx.org) webserver
2121
* Debugging with [Xdebug 3.3.2](https://xdebug.org)
22-
* Testing with [PHPUnit 11.3.6](https://phpunit.de) to ensure code quality and reliability
23-
* [Redis 7.4.0](https://redis.io) as session storage, database, cache, streaming engine, and message broker
22+
* Testing with [PHPUnit 11.4.3](https://phpunit.de) to ensure code quality and reliability
23+
* [Redis 7.4.1](https://redis.io) as session storage, database, cache, streaming engine, and message broker
2424
* Database storage with [MariaDB 11.5.2](https://mariadb.org)
2525

2626
## Setup Instructions

compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
XDEBUG_MODE: "coverage"
2525

2626
redis:
27-
image: "redis:7.4.0-alpine"
27+
image: "redis:7.4.1-alpine"
2828
environment:
2929
ALLOW_EMPTY_PASSWORD: "yes"
3030

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require-dev": {
3-
"phpunit/phpunit": "^11.3.6"
3+
"phpunit/phpunit": "^11.4.3"
44
},
55
"autoload": {
66
"psr-4": {

composer.lock

+41-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/php-fpm/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3.12-fpm
1+
FROM php:8.3.13-fpm
22
WORKDIR "/app"
33

44
# Update

0 commit comments

Comments
 (0)