From 2ffae123d25cd9f9e67549f90af1ab4ea1d145a1 Mon Sep 17 00:00:00 2001 From: Leonardo Lemos Date: Thu, 9 Jan 2025 18:33:02 -0300 Subject: [PATCH] upgrade PHP version to 8.4 --- .github/workflows/continous-integration.yml | 2 +- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continous-integration.yml b/.github/workflows/continous-integration.yml index f2607b4..4b361a0 100644 --- a/.github/workflows/continous-integration.yml +++ b/.github/workflows/continous-integration.yml @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - php-versions: ['8.1', '8.2', '8.3'] + php-versions: ['8.1', '8.2', '8.3', '8.4'] steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b98ba9..f2b0a71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [v2.5.0] +### Added +- Support PHP 8.4 + ## [v2.4.0] ### Added - Support for Laravel 11 diff --git a/Dockerfile b/Dockerfile index d63a133..dfb6fc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3-fpm-alpine +FROM php:8.4-fpm-alpine COPY --from=composer:latest /usr/bin/composer /usr/bin/composer RUN apk --no-cache --update add libmemcached-dev zlib-dev libpng-dev libjpeg-turbo-dev freetype-dev libxml2-dev