Skip to content

Commit ef75e6e

Browse files
committed
fix: Update dev dependencies
1 parent 77d4a3d commit ef75e6e

File tree

5 files changed

+12
-14
lines changed

5 files changed

+12
-14
lines changed

composer.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@
1313
"php": "^8.2"
1414
},
1515
"require-dev": {
16-
"brainbits/phpcs-standard": "^7.0.1",
17-
"ergebnis/phpstan-rules": "^2.2.0",
18-
"thecodingmachine/phpstan-safe-rule": "^1.2.0",
19-
"thecodingmachine/phpstan-strict-rules": "^1.0.0",
20-
"phpstan/phpstan-phpunit": "^1.3.16",
21-
"squizlabs/php_codesniffer": "^3.9.0",
22-
"phpstan/phpstan": "^1.10.59",
23-
"phpunit/phpunit": "^11.0.3",
24-
"rector/rector": "^1.0.1"
16+
"brainbits/phpcs-standard": "^8.0.0",
17+
"ergebnis/phpstan-rules": "^2.11.0",
18+
"thecodingmachine/phpstan-safe-rule": "^v1.4.1",
19+
"phpstan/phpstan-phpunit": "^2.0.7",
20+
"squizlabs/php_codesniffer": "^3.13.2",
21+
"phpstan/phpstan": "^2.1.22",
22+
"phpunit/phpunit": "^12.3.6",
23+
"rector/rector": "^2.1.4"
2524
},
2625
"autoload": {
2726
"psr-4": {

phpstan.neon.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ includes:
1616
- vendor/ergebnis/phpstan-rules/rules.neon
1717
- vendor/phpstan/phpstan-phpunit/extension.neon
1818
- vendor/phpstan/phpstan-phpunit/rules.neon
19-
- vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.3/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
cacheDirectory=".phpunit.cache"
66
executionOrder="depends,defects"
@@ -15,7 +15,7 @@
1515
</testsuite>
1616
</testsuites>
1717

18-
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
18+
<source restrictNotices="true" restrictWarnings="true">
1919
<include>
2020
<directory>src</directory>
2121
</include>

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use Rector\Config\RectorConfig;
66
use Rector\Naming\Rector\Class_\RenamePropertyToMatchTypeRector;
77
use Rector\Php74\Rector\LNumber\AddLiteralSeparatorToNumberRector;
8+
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitSelfCallRector;
89
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
9-
use Rector\PHPUnit\Rector\Class_\PreferPHPUnitSelfCallRector;
1010
use Rector\PHPUnit\Set\PHPUnitSetList;
1111
use Rector\Set\ValueObject\LevelSetList;
1212
use Rector\Set\ValueObject\SetList;

src/Array/TraverseLeftRightTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see \Plook\Tests\Tree\Array\TraverseLeftRightTreeTest
1212
*
1313
* @template T of array
14-
*/
14+
*/
1515
final class TraverseLeftRightTree
1616
{
1717
/**

0 commit comments

Comments
 (0)