Skip to content

Commit

Permalink
chore: update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Aug 22, 2024
1 parent bb3784f commit e3b7634
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
},
"require-dev": {
"brotkrueml/coding-standards": "~5.1.0",
"ergebnis/composer-normalize": "~2.42.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "1.10.58",
"ergebnis/composer-normalize": "~2.43.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "1.11.11",
"phpunit/phpunit": "^10.5",
"rector/rector": "1.0.1",
"symfony/yaml": "^5.4 || ^6.4 || 7.0",
"symplify/phpstan-rules": "^12.4",
"rector/rector": "1.2.3",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-dashboard": "^11.5.3 || ^12.4",
"typo3/cms-extbase": "^11.5.3 || ^12.4",
Expand Down
6 changes: 6 additions & 0 deletions phpstan.baseline.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
parameters:
ignoreErrors:
-
message: "#^Instanceof between string\\|null and DateTimeInterface will always evaluate to false\\.$#"
count: 1
path: Classes/Domain/Finishers/AbstractTransferFinisher.php
1 change: 1 addition & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
includes:
- phpstan.baseline.neon
- .Build/vendor/symplify/phpstan-rules/config/regex-rules.neon

rules:
Expand Down
6 changes: 1 addition & 5 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
declare(strict_types=1);

use Rector\Config\RectorConfig;
use Rector\Php74\Rector\LNumber\AddLiteralSeparatorToNumberRector;
use Rector\PHPUnit\Set\PHPUnitSetList;

return RectorConfig::configure()
Expand All @@ -29,7 +28,4 @@
->withSets([
PHPUnitSetList::PHPUNIT_100,
])
->withRootFiles()
->withSkip([
AddLiteralSeparatorToNumberRector::class,
]);
->withRootFiles();

0 comments on commit e3b7634

Please sign in to comment.