Skip to content

Commit

Permalink
feature #291 bump minimum dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jrushlow authored Apr 4, 2024
1 parent c12daef commit e5b1831
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Upgrade from 1.x to 2.0

ResetPasswordBundle now requires PHP `8.3`+ & Symfony `6.4.5`+
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e5b1831

Please sign in to comment.