Skip to content

Commit 7f9ac04

Browse files
committed
Dropped support for PHP 7.2/7.3
1 parent 54bff6a commit 7f9ac04

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
include:
1616
#Mini (for each Symfony version)
17-
- php-version: '7.2'
17+
- php-version: '7.4'
1818
symfony-version: '5.4.*'
1919
composer-flags: '--prefer-stable --prefer-lowest'
2020
description: 'with SF 5.4.* lowest'
@@ -32,19 +32,18 @@ jobs:
3232
description: 'with SF 6.3.*'
3333

3434
#PHP versions
35-
- php-version: '7.2'
3635
- php-version: '7.4'
3736
- php-version: '8.0'
3837
- php-version: '8.1'
3938
- php-version: '8.2'
4039

4140
#CS
42-
- php-version: '8.1'
41+
- php-version: '8.2'
4342
description: 'with Coding Standards'
4443
coding-standards: true
4544

4645
#Static Analysis (min PHP version)
47-
- php-version: '7.2'
46+
- php-version: '7.4'
4847
description: 'with Static Analysis'
4948
static-analysis: true
5049

.php-cs-fixer.dist.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
'@Symfony' => true,
2020
'@Symfony:risky' => true,
2121
'@DoctrineAnnotation' => true,
22-
'@PHP71Migration' => true,
23-
'@PHP71Migration:risky' => true,
22+
'@PHP74Migration' => true,
23+
'@PHP74Migration:risky' => true,
2424
'@PHPUnit84Migration:risky' => true,
2525
'array_syntax' => ['syntax' => 'short'],
2626
'fopen_flags' => true,

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
},
2424
"require": {
25-
"php": "^7.2|^8.0",
25+
"php": "^7.4|^8.0",
2626
"ext-mbstring": "*",
2727
"symfony/config": "^5.4|^6.3",
2828
"symfony/console": "^5.4|^6.3",
@@ -34,8 +34,8 @@
3434
"require-dev": {
3535
"dg/bypass-finals": "^1.3",
3636
"friendsofphp/php-cs-fixer": "^3.0",
37-
"phpunit/phpunit": "^8.5.14",
38-
"vimeo/psalm": "^4.23"
37+
"phpunit/phpunit": "^9",
38+
"vimeo/psalm": "^5"
3939
},
4040
"config": {
4141
"sort-packages": true

src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class Configuration implements ConfigurationInterface
2020
{
2121
/**
22-
* @psalm-suppress PossiblyUndefinedMethod
22+
* @psalm-suppress UndefinedMethod
2323
*/
2424
public function getConfigTreeBuilder()
2525
{

0 commit comments

Comments
 (0)