From e5b18316992b3b2b1bc6dda1239ac6df5d0befb2 Mon Sep 17 00:00:00 2001 From: Jesse Rushlow <40327885+jrushlow@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:08:28 -0400 Subject: [PATCH] feature #291 bump minimum dependency versions --- .github/workflows/ci.yaml | 3 ++- UPGRADING.md | 3 +++ composer.json | 12 ++++++------ 3 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 UPGRADING.md diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b98253fc..892a600d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,8 @@ jobs: test: uses: SymfonyCasts/.github/.github/workflows/phpunit.yaml@main with: - php-version-lowest: '8.1.10' + php-version-matrix: '[8.3]' + php-version-lowest: 8.3 composer-validate: uses: SymfonyCasts/.github/.github/workflows/composer-validate.yaml@main diff --git a/UPGRADING.md b/UPGRADING.md new file mode 100644 index 00000000..b91b4138 --- /dev/null +++ b/UPGRADING.md @@ -0,0 +1,3 @@ +# Upgrade from 1.x to 2.0 + +ResetPasswordBundle now requires PHP `8.3`+ & Symfony `6.4.5`+ diff --git a/composer.json b/composer.json index ebe7c334..8cb6567c 100644 --- a/composer.json +++ b/composer.json @@ -5,17 +5,17 @@ "license": "MIT", "minimum-stability": "dev", "require": { - "php": ">=8.1.10", + "php": ">=8.3", "ext-json": "*", - "symfony/config": "^5.4 | ^6.0 | ^7.0", - "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0", + "symfony/config": "^6.4.5 | ^7.0", + "symfony/dependency-injection": "^6.4.5 | ^7.0", "symfony/deprecation-contracts": "^2.2 | ^3.0", - "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0" + "symfony/http-kernel": "^6.4.5 | ^7.0" }, "require-dev": { "doctrine/orm": "^2.13", - "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0", - "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0", + "symfony/framework-bundle": "^6.4.5 | ^7.0", + "symfony/phpunit-bridge": "^6.4.5 | ^7.0", "doctrine/doctrine-bundle": "^2.8", "doctrine/annotations": "^1.0", "phpstan/phpstan": "^1.11.x-dev"