Skip to content

Commit b27418e

Browse files
authored
Merge 1.x into 2.x
2 parents 1cddd07 + b7a53d0 commit b27418e

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

composer.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
"Audit"
1010
],
1111
"require": {
12-
"php": "^8.0",
12+
"php": "^8.1",
1313
"doctrine/collections": "^1.8 || ^2.0",
1414
"doctrine/dbal": "^3.6",
1515
"doctrine/event-manager": "^1.2 || ^2.0",
1616
"doctrine/orm": "^2.14 || ^3.0",
1717
"doctrine/persistence": "^3.0",
1818
"psr/clock": "^1.0",
19-
"symfony/config": "^5.4 || ^6.2 || ^7.0",
20-
"symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
21-
"symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
22-
"symfony/security-core": "^5.4 || ^6.2 || ^7.0",
19+
"symfony/config": "^6.4 || ^7.1",
20+
"symfony/dependency-injection": "^6.4 || ^7.1",
21+
"symfony/http-kernel": "^6.4 || ^7.1",
22+
"symfony/security-core": "^6.4 || ^7.1",
2323
"twig/twig": "^3.0"
2424
},
2525
"require-dev": {
@@ -38,15 +38,15 @@
3838
"psalm/plugin-phpunit": "^0.18",
3939
"psalm/plugin-symfony": "^5.0",
4040
"rector/rector": "^1.1",
41-
"symfony/browser-kit": "^5.4 || ^6.2 || ^7.0",
42-
"symfony/cache": "^5.4 || ^6.2 || ^7.0",
43-
"symfony/filesystem": "^5.4 || ^6.2 || ^7.0",
44-
"symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
45-
"symfony/http-foundation": "^5.4 || ^6.2 || ^7.0",
46-
"symfony/phpunit-bridge": "^6.2",
47-
"symfony/security-bundle": "^5.4 || ^6.2 || ^7.0",
48-
"symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
49-
"symfony/var-dumper": "^5.4 || ^6.2 || ^7.0",
41+
"symfony/browser-kit": "^6.4 || ^7.1",
42+
"symfony/cache": "^6.4 || ^7.1",
43+
"symfony/filesystem": "^6.4 || ^7.1",
44+
"symfony/framework-bundle": "^6.4 || ^7.1",
45+
"symfony/http-foundation": "^6.4 || ^7.1",
46+
"symfony/phpunit-bridge": "^6.4 || ^7.1",
47+
"symfony/security-bundle": "^6.4 || ^7.1",
48+
"symfony/twig-bundle": "^6.4 || ^7.1",
49+
"symfony/var-dumper": "^6.4 || ^7.1",
5050
"vimeo/psalm": "^5.7"
5151
},
5252
"conflict": {

rector.php

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
use Rector\Config\RectorConfig;
2121
use Rector\Php70\Rector\FunctionLike\ExceptionHandlerTypehintRector;
22+
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
23+
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
2224
use Rector\PHPUnit\CodeQuality\Rector\Class_\NarrowUnusedSetUpDefinedPropertyRector;
2325
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
2426
use Rector\PHPUnit\Set\PHPUnitSetList;
@@ -40,6 +42,8 @@
4042
$rectorConfig->importShortClasses(false);
4143
$rectorConfig->skip([
4244
ExceptionHandlerTypehintRector::class,
45+
ReadOnlyPropertyRector::class,
46+
NullToStrictStringFuncCallArgRector::class,
4347
PreferPHPUnitThisCallRector::class,
4448
NarrowUnusedSetUpDefinedPropertyRector::class,
4549
]);

0 commit comments

Comments
 (0)