Skip to content

Commit edeae01

Browse files
committed
Upgrade to nginx, 1.29.0, PHP 8.4.10, PHPUnit 12.2.6, Xdebug 3.4.4, redis 8.0.2 and MariaDB 11.8.2
1 parent 5e30048 commit edeae01

File tree

5 files changed

+114
-70
lines changed

5 files changed

+114
-70
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Docker compose PHP 8.4.5, Xdebug 3.4.1, Nginx 1.27.4, Redis 7.4.2 and MariaDB 11.7.2
1+
# Docker compose PHP 8.4.10, Xdebug 3.4.4, Nginx 1.29.0, Redis 8.0.2 and MariaDB 11.8.2
22

33
![docker](https://img.shields.io/badge/Docker-compose-brightgreen.svg)
4-
![nginx](https://img.shields.io/badge/nginx-1.27.4-brightgreen.svg)
5-
![php](https://img.shields.io/badge/PHP_FPM-8.4.5-brightgreen.svg)
6-
![xdebug](https://img.shields.io/badge/Xdebug-3.4.1-brightgreen.svg)
4+
![nginx](https://img.shields.io/badge/nginx-1.29.0-brightgreen.svg)
5+
![php](https://img.shields.io/badge/PHP_FPM-8.4.10-brightgreen.svg)
76
![phpunit](https://img.shields.io/badge/PHPUnit-11.4.3-brightgreen.svg)
8-
![redis](https://img.shields.io/badge/Redis-7.4.2-brightgreen.svg)
9-
![mariadb](https://img.shields.io/badge/MariaDB-11.7.2-brightgreen.svg)
7+
![xdebug](https://img.shields.io/badge/Xdebug-3.4.4-brightgreen.svg)
8+
![redis](https://img.shields.io/badge/Redis-8.0.2-brightgreen.svg)
9+
![mariadb](https://img.shields.io/badge/MariaDB-11.8.2-brightgreen.svg)
1010

1111
# Goal of this project
1212

@@ -15,13 +15,13 @@ 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.4.5](https://www.php.net) for better performance, lower CPU and memory usage
18+
* Uses [PHP 8.4.10](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
20-
* Built on the lightweight [nginx 1.27.4](https://nginx.org) webserver
21-
* Debugging with [Xdebug 3.4.1](https://xdebug.org)
20+
* Built on the lightweight [nginx 1.29.0](https://nginx.org) webserver
21+
* Debugging with [Xdebug 3.4.4](https://xdebug.org)
2222
* Testing with [PHPUnit 11.4.3](https://phpunit.de) to ensure code quality and reliability
23-
* [Redis 7.4.2](https://redis.io) as session storage, database, cache, streaming engine, and message broker
24-
* Database storage with [MariaDB 11.7.2](https://mariadb.org)
23+
* [Redis 8.0.2](https://redis.io) as session storage, database, cache, streaming engine, and message broker
24+
* Database storage with [MariaDB 11.8.2](https://mariadb.org)
2525

2626
## Setup Instructions
2727

compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
nginx:
3-
image: "nginx:1.27.4-alpine"
3+
image: "nginx:1.29.0-alpine"
44
restart: always
55
working_dir: /app
66
links:
@@ -24,12 +24,12 @@ services:
2424
XDEBUG_MODE: "coverage"
2525

2626
redis:
27-
image: "redis:7.4.2-alpine"
27+
image: "redis:8.0.2-alpine"
2828
environment:
2929
ALLOW_EMPTY_PASSWORD: "yes"
3030

3131
mariadb:
32-
image: "mariadb:11.7.2"
32+
image: "mariadb:11.8.2"
3333
restart: always
3434
working_dir: /app
3535
volumes:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"php": ">=8.4"
44
},
55
"require-dev": {
6-
"phpunit/phpunit": "12.0.7"
6+
"phpunit/phpunit": "12.2.6"
77
},
88
"autoload": {
99
"psr-4": {

0 commit comments

Comments
 (0)