Skip to content

Commit

Permalink
Upgrade to PHP 8.3.13, redis to 7.4.1 and PHPUnit to 11.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
IshtarStar committed Nov 8, 2024
1 parent cc5fffe commit fab1591
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 51 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Docker compose PHP 8.3.12, Xdebug 3.3.2, Nginx 1.27.2, Redis 7.4.0 and MariaDB 11.5.2
# Docker compose PHP 8.3.13, Xdebug 3.3.2, Nginx 1.27.2, Redis 7.4.1 and MariaDB 11.5.2

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

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

* 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)
* Uses [PHP 8.3.12](https://www.php.net) for better performance, lower CPU and memory usage
* Uses [PHP 8.3.13](https://www.php.net) for better performance, lower CPU and memory usage
* And [composer the dependency manager for PHP](https://getcomposer.org) to start easy your project
* Built on the lightweight [nginx 1.27.2](https://nginx.org) webserver
* Debugging with [Xdebug 3.3.2](https://xdebug.org)
* Testing with [PHPUnit 11.3.6](https://phpunit.de) to ensure code quality and reliability
* [Redis 7.4.0](https://redis.io) as session storage, database, cache, streaming engine, and message broker
* Testing with [PHPUnit 11.4.3](https://phpunit.de) to ensure code quality and reliability
* [Redis 7.4.1](https://redis.io) as session storage, database, cache, streaming engine, and message broker
* Database storage with [MariaDB 11.5.2](https://mariadb.org)

## Setup Instructions
Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
XDEBUG_MODE: "coverage"

redis:
image: "redis:7.4.0-alpine"
image: "redis:7.4.1-alpine"
environment:
ALLOW_EMPTY_PASSWORD: "yes"

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require-dev": {
"phpunit/phpunit": "^11.3.6"
"phpunit/phpunit": "^11.4.3"
},
"autoload": {
"psr-4": {
Expand Down
82 changes: 41 additions & 41 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 docker/php-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3.12-fpm
FROM php:8.3.13-fpm
WORKDIR "/app"

# Update
Expand Down

0 comments on commit fab1591

Please sign in to comment.