diff --git a/ROADMAP.md b/ROADMAP.md index ce3b9f6..7929a99 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -4,5 +4,4 @@ * Add TOTP authentication * Add mutation testing * Add reset password -* Upgrade to PHP 8.4 * Upgrade to DBAL 4.2 diff --git a/composer.json b/composer.json index c85c856..f1778df 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "minimum-stability": "stable", "prefer-stable": true, "require": { - "php": ">=8.3", + "php": ">=8.4", "ext-ctype": "*", "ext-iconv": "*", "babdev/pagerfanta-bundle": "^4.5", @@ -48,7 +48,7 @@ "phpstan/phpstan": "^2.1.1", "phpstan/phpstan-deprecation-rules": "^2.0.1", "phpstan/phpstan-doctrine": "^2.0.1", - "phpstan/phpstan-strict-rules": "^2.0.1", + "phpstan/phpstan-strict-rules": "^2.0.2", "phpstan/phpstan-symfony": "^2.0.1", "phpunit/phpunit": "^11.5.3", "rector/rector": "^2.0.7", diff --git a/composer.lock b/composer.lock index 13beafd..d7a7df6 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "43f53a328bff0593d5169c16cc0dc7b9", + "content-hash": "421c5e4206e575b4d251253cdf2d24e3", "packages": [ { "name": "babdev/pagerfanta-bundle", @@ -8453,16 +8453,16 @@ }, { "name": "phpstan/phpstan-strict-rules", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-strict-rules.git", - "reference": "ed6fea0ad4ad9c7e25f3ad2e7c4d420cf1e67fe3" + "reference": "02277ce4b0dd03d74f15282064f8f027d1dec9cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/ed6fea0ad4ad9c7e25f3ad2e7c4d420cf1e67fe3", - "reference": "ed6fea0ad4ad9c7e25f3ad2e7c4d420cf1e67fe3", + "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/02277ce4b0dd03d74f15282064f8f027d1dec9cc", + "reference": "02277ce4b0dd03d74f15282064f8f027d1dec9cc", "shasum": "" }, "require": { @@ -8495,9 +8495,9 @@ "description": "Extra strict and opinionated rules for PHPStan", "support": { "issues": "https://github.com/phpstan/phpstan-strict-rules/issues", - "source": "https://github.com/phpstan/phpstan-strict-rules/tree/2.0.1" + "source": "https://github.com/phpstan/phpstan-strict-rules/tree/2.0.2" }, - "time": "2024-12-12T20:21:10+00:00" + "time": "2025-01-19T13:03:11+00:00" }, { "name": "phpstan/phpstan-symfony", @@ -11905,7 +11905,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": ">=8.3", + "php": ">=8.4", "ext-ctype": "*", "ext-iconv": "*" }, diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index 881c15e..4ecc438 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3-fpm +FROM php:8.4-fpm COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer