Skip to content

Commit c8dc9e3

Browse files
authored
[TASK] Update the development dependencies (#1599)
1 parent 8b3dd42 commit c8dc9e3

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.phive/phars.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
33
<phar name="composer-normalize" version="^2.44.0" installed="2.52.0" location="./.phive/composer-normalize" copy="false"/>
4-
<phar name="php-cs-fixer" version="^3.59.3" installed="3.95.10" location="./.phive/php-cs-fixer" copy="false"/>
4+
<phar name="php-cs-fixer" version="^3.59.3" installed="3.95.16" location="./.phive/php-cs-fixer" copy="false"/>
55
</phive>

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
"require-dev": {
3131
"php-parallel-lint/php-parallel-lint": "1.4.0",
3232
"phpstan/extension-installer": "1.4.3",
33-
"phpstan/phpstan": "1.12.33 || 2.2.2",
34-
"phpstan/phpstan-phpunit": "1.4.2 || 2.0.16",
35-
"phpstan/phpstan-strict-rules": "1.6.2 || 2.0.11",
33+
"phpstan/phpstan": "1.12.33 || 2.2.6",
34+
"phpstan/phpstan-phpunit": "1.4.2 || 2.0.18",
35+
"phpstan/phpstan-strict-rules": "1.6.2 || 2.0.12",
3636
"phpunit/phpunit": "8.5.53",
3737
"rawr/phpunit-data-provider": "3.3.1",
38-
"rector/rector": "1.2.10 || 2.5.0",
39-
"rector/type-perfect": "1.0.0 || 2.1.3",
38+
"rector/rector": "1.2.10 || 2.5.8",
39+
"rector/type-perfect": "1.0.0 || 2.1.4",
4040
"squizlabs/php_codesniffer": "4.0.1",
41-
"thecodingmachine/phpstan-safe-rule": "1.2.0 || 1.4.3"
41+
"thecodingmachine/phpstan-safe-rule": "1.2.0 || 1.4.7"
4242
},
4343
"suggest": {
4444
"ext-mbstring": "for parsing UTF-8 CSS"

src/Rule/Rule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class_alias(Declaration::class, Rule::class);
1414
// The test is expected to evaluate to false,
1515
// but allows for the deprecation notice to be picked up by IDEs like PHPStorm.
16-
// @phpstan-ignore booleanNot.alwaysTrue, booleanAnd.alwaysTrue, function.impossibleType
16+
// @phpstan-ignore function.impossibleType
1717
if (!\class_exists(Rule::class, false) && !\interface_exists(Rule::class, false)) {
1818
/**
1919
* @deprecated in v9.2, will be removed in v10.0. Use `Property\Declaration` instead, which is a direct

src/RuleSet/RuleContainer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class_alias(DeclarationList::class, RuleContainer::class);
1212
// The test is expected to evaluate to false,
1313
// but allows for the deprecation notice to be picked up by IDEs like PHPStorm.
14-
// @phpstan-ignore booleanNot.alwaysTrue, booleanAnd.alwaysTrue, function.impossibleType
14+
// @phpstan-ignore function.impossibleType
1515
if (!\class_exists(RuleContainer::class, false) && !\interface_exists(RuleContainer::class, false)) {
1616
/**
1717
* @deprecated in v9.2, will be removed in v10.0. Use `DeclarationList` instead, which is a direct replacement.

0 commit comments

Comments
 (0)