Skip to content

Commit 4aaf8cd

Browse files
committed
Restore PHP 7.4 support
Technically it's not required to use PHP 8.4 as we don't use any specific language features
1 parent 9e7f31f commit 4aaf8cd

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
php-version:
20-
- '8.4'
20+
- '7.4'
2121

2222
steps:
2323
-
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
matrix:
6262
php-version:
63-
- '8.4'
63+
- '7.4'
6464

6565
steps:
6666
-
@@ -103,14 +103,19 @@ jobs:
103103
strategy:
104104
matrix:
105105
include:
106+
-
107+
php-version: '7.4'
108+
composer-options: '--prefer-stable'
109+
symfony-version: '^7.4'
106110
-
107111
php-version: '8.4'
108112
composer-options: '--prefer-stable'
109113
symfony-version: '^8.0'
114+
110115
-
111-
php-version: '8.4'
116+
php-version: '8.5'
112117
composer-options: '--prefer-stable'
113-
symfony-version: '^7.4'
118+
symfony-version: '^8.0'
114119

115120
steps:
116121
-

UPGRADE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ UPGRADE
44
From 3.x to 4.0
55
---------------
66

7-
* Support for Symfony 6 was removed, PHP 8.4 and Symfony 7.4 is now the minimum required version.
7+
* Support for Symfony 6 was removed, PHP 7.4 and Symfony 7.4 is now the minimum required version.
88

99
* The constructor of password constraints has changed, see (Upgrade instructions of the validator library)[https://github.com/rollerworks/PasswordStrengthValidator/blob/main/UPGRADE.md]
1010

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": ">=8.4",
23+
"php": ">=7.4",
2424
"rollerworks/password-strength-validator": "^3.0",
2525
"symfony/framework-bundle": "^7.4 || ^8.0"
2626
},

0 commit comments

Comments
 (0)