Skip to content

Update Composer development tooling dependencies#268

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/composer-dev-tooling
Open

Update Composer development tooling dependencies#268
renovate[bot] wants to merge 1 commit intomainfrom
renovate/composer-dev-tooling

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 19, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
ergebnis/phpstan-rules ^2.1^2.13.1 age confidence
php-cs-fixer/shim ^v3.47.1^v3.94.0 age confidence
php-standard-library/phpstan-extension ^1.0^1.1.0 age confidence
phpstan/phpstan ^1.10.56^1.12.32 age confidence
phpstan/phpstan-deprecation-rules ^1.1.4^1.2.1 age confidence
phpstan/phpstan-phpunit ^1.3.15^1.4.2 age confidence
phpstan/phpstan-strict-rules ^1.5.2^1.6.2 age confidence
rector/rector (source) ^0.19.1^0.19.8 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

ergebnis/phpstan-rules (ergebnis/phpstan-rules)

v2.13.1

Compare Source

For a full diff see [2.13.0...2.13.1][2.13.0...2.13.1].

Fixed

v2.13.0

Compare Source

For a full diff see [2.12.0...2.13.0][2.12.0...2.13.0].

Added
  • Added Files\NoPhpstanIgnoreRule, which reports an error when a @phpstan-ignore, @phpstan-ignore-line, or @phpstan-ignore-next-line tag is used to suppress an error ([#​1009]), by [@​localheinz]
Changed

v2.12.0

Compare Source

For a full diff see [2.11.0...2.12.0][2.11.0...2.12.0].

Added

v2.11.0

Compare Source

For a full diff see [2.10.5...2.11.0][2.10.5...2.11.0].

Changed

v2.10.5

Compare Source

For a full diff see [2.10.4...2.10.5][2.10.4...2.10.5].

Fixed
  • Adjusted Methods\NoNamedArgumentRule to handle calls to constructors of variable class names ([#​957]), by [@​localheinz]
  • Adjusted Methods\NoNamedArgumentRule to describe known calls only ([#​958]), by [@​localheinz]

v2.10.4

Compare Source

For a full diff see [2.10.3...2.10.4][2.10.3...2.10.4].

Fixed
  • Adjusted Methods\NoNamedArgumentRule to handle static calls on variable expressions ([#​947]), by [@​localheinz]
  • Adjusted Methods\NoNamedArgumentRule to handle calls on invokables ([#​948]), by [@​localheinz]
  • Adjusted Methods\NoNamedArgumentRule to handle calls on callables assigned to properties ([#​949]), by [@​localheinz]
  • Adjusted Methods\NoNamedArgumentRule to handle all other calls with generic error message ([#​951]), by [@​localheinz]

v2.10.3

Compare Source

For a full diff see [2.10.2...2.10.3][2.10.2...2.10.3].

Fixed

v2.10.2

Compare Source

For a full diff see [2.10.1...2.10.2][2.10.1...2.10.2].

Fixed

v2.10.1

Compare Source

For a full diff see [2.10.0...2.10.1][2.10.0...2.10.1].

Fixed

v2.10.0

Compare Source

For a full diff see [2.9.0...2.10.0][2.9.0...2.10.0].

Added
  • Added Methods\InvokeParentHookMethodRule, which reports an error when a hook method that overrides a hook method in a parent class does not invoke the overridden hook method in the expected order ([#​939]), by [@​localheinz]

v2.9.0

Compare Source

For a full diff see [2.8.0...2.9.0][2.8.0...2.9.0].

Added
  • Added CallLikes\NoNamedArgumentRule, which reports an error when an anonymous function, a function, or a method is invoked using a named argument ([#​914]), by [@​localheinz]
Changed

v2.8.0

Compare Source

For a full diff see [2.7.0...2.8.0][2.7.0...2.8.0].

Added
  • Added allRules parameter to allow disabling and enabling all rules ([#​913]), by [@​localheinz]
  • Added Expressions\NoAssignByReferenceRule, which reports an error when a variable is assigned by reference ([#​914]), by [@​localheinz]

v2.7.0

Compare Source

For a full diff see [2.6.1...2.7.0][2.6.1...2.7.0].

Added
  • Added Closures\NoParameterPassedByReferenceRule, Functions\NoParameterPassedByReferenceRule, Methods\NoParameterPassedByReferenceRule, which report an error when a closure, a function, or a method has a parameter that is passed by reference ([#​911]), by [@​localheinz]
  • Added Functions\NoReturnByReferenceRule and Methods\NoReturnByReferenceRule, which report an error when a function or a method returns by reference ([#​912]), by [@​localheinz]

v2.6.1

Compare Source

For a full diff see [2.6.0...2.6.1][2.6.0...2.6.1].

Fixed
  • Adjusted Methods\NoParameterWithNullableTypeDeclarationRule to use the appropriate error identifier ([#​902]), by [@​manuelkiessling]

v2.6.0

Compare Source

For a full diff see [2.5.2...2.6.0][2.5.2...2.6.0].

Added

v2.5.2

Compare Source

For a full diff see [2.5.1...2.5.2][2.5.1...2.5.2].

Fixed
  • Adjusted Closures\NoNullableReturnTypeDeclarationRule, Closures\NoParameterWithNullableTypeDeclarationRule, Functions\NoNullableReturnTypeDeclarationRule, Functions\NoParameterWithNullableTypeDeclarationRule, Methods\NoNullableReturnTypeDeclarationRule, Methods\NoParameterWithNullableTypeDeclarationRule to detect cases where null is referenced with incorrect case or relative to the root namespace ([#​897]), by [@​localheinz]

v2.5.1

Compare Source

For a full diff see [2.5.0...2.5.1][2.5.0...2.5.1].

Fixed
  • Returned rule with error identifier ([#​882]), by [@​localheinz]
  • Adjusted Methods\FinalInAbstractClassRule to ignore Doctrine embeddables and entities ([#​396]), by [@​localheinz]
  • Adjusted Expressions\NoCompactRule to detect usages of compact() with incorrect case ([#​889]), by [@​localheinz]
  • Adjusted Methods\PrivateInFinalClassRule to use more appropriate message when detecting a protected method in an anonymous class ([#​890]), by [@​localheinz]
  • Adjusted Methods\PrivateInFinalClassRule to ignore protected methods from traits ([#​891]), by [@​localheinz]
  • Adjusted Methods\PrivateInFinalClassRule to ignore protected methods with phpunit/phpunit attributes requiring methods to be protected ([#​863]), by [@​cosmastech]
  • Adjusted Methods\PrivateInFinalClassRule to ignore protected methods with phpunit/phpunit annotations requiring methods to be protected ([#​895]), by [@​cosmastech]

v2.5.0

Compare Source

For a full diff see [2.4.0...2.5.0][2.4.0...2.5.0].

Added
Changed

v2.4.0

Compare Source

For a full diff see [2.3.0...2.4.0][2.3.0...2.4.0].

Added

v2.3.0

Compare Source

For a full diff see [2.2.0...2.3.0][2.2.0...2.3.0].

Changed

v2.2.0

Compare Source

For a full diff see [2.1.0...2.2.0][2.1.0...2.2.0].

Changed
PHP-CS-Fixer/shim (php-cs-fixer/shim)

v3.94.0

Compare Source

v3.93.1

Compare Source

v3.93.0

Compare Source

v3.92.5

Compare Source

v3.92.4

Compare Source

v3.92.3

Compare Source

v3.92.2

Compare Source

v3.92.1

Compare Source

v3.92.0

Compare Source

v3.91.3

Compare Source

v3.91.2

Compare Source

v3.91.1

Compare Source

v3.91.0

Compare Source

v3.90.0

Compare Source

v3.89.2

Compare Source

v3.89.1

Compare Source

v3.89.0

Compare Source

v3.88.2

Compare Source

v3.88.1

Compare Source

v3.88.0

Compare Source

v3.87.2

Compare Source

v3.87.1

Compare Source

v3.87.0

Compare Source

v3.86.0

Compare Source

v3.85.1

Compare Source

v3.85.0

Compare Source

v3.84.0

Compare Source

v3.83.0

Compare Source

v3.82.2

Compare Source

v3.82.1

Compare Source

v3.82.0

Compare Source

v3.81.0

Compare Source

v3.80.0

Compare Source

v3.79.0

Compare Source

v3.78.1

Compare Source

v3.78.0

Compare Source

v3.77.0

Compare Source

v3.76.0

Compare Source

v3.75.0

Compare Source

v3.74.0

Compare Source

v3.73.1

Compare Source

v3.73.0

Compare Source

v3.72.0

Compare Source

v3.71.0

Compare Source

v3.70.2

Compare Source

v3.70.1

Compare Source

v3.70.0

Compare Source

v3.69.1

Compare Source

v3.69.0

Compare Source

v3.68.5

Compare Source

v3.68.4

Compare Source

v3.68.3

Compare Source

v3.68.2

Compare Source

v3.68.1

Compare Source

v3.68.0

Compare Source

v3.67.1

Compare Source

v3.67.0

Compare Source

v3.66.2

Compare Source

v3.66.1

Compare Source

v3.66.0

Compare Source

v3.65.0

Compare Source

v3.64.0

Compare Source

v3.63.2

Compare Source

v3.63.1

Compare Source

v3.62.0

Compare Source

v3.61.1

Compare Source

v3.61.0

Compare Source

v3.60.0

Compare Source

v3.59.3

Compare Source

v3.59.2

Compare Source

v3.59.1

Compare Source

v3.59.0

Compare Source

v3.58.1

Compare Source

v3.58.0

Compare Source

v3.57.2

Compare Source

v3.57.1

Compare Source

v3.57.0

Compare Source

v3.56.2

Compare Source

v3.56.1

Compare Source

v3.56.0

Compare Source

v3.55.0

Compare Source

v3.54.0

Compare Source

v3.53.0

Compare Source

v3.52.1

Compare Source

v3.52.0

Compare Source

v3.51.0

Compare Source

v3.50.0

Compare Source

v3.49.0

Compare Source

v3.48.0

Compare Source

php-standard-library/phpstan-extension (php-standard-library/phpstan-extension)

v1.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: php-standard-library/phpstan-extension@1.0.0...1.1.0

phpstan/phpstan-phar-composer-source (phpstan/phpstan)

v1.12.32

Compare Source

v1.12.31

Compare Source

v1.12.30

Compare Source

v1.12.29

Compare Source

v1.12.28

Compare Source

v1.12.27

Compare Source

v1.12.26

Compare Source

v1.12.25

Compare Source

v1.12.24

Compare Source

v1.12.23

Compare Source

v1.12.22

Compare Source

v1.12.21

Compare Source

v1.12.20

Compare Source

v1.12.19

Compare Source

v1.12.18

Compare Source

v1.12.17

Compare Source

v1.12.16

Compare Source

v1.12.15

Compare Source

v1.12.14

Compare Source

v1.12.13

Compare Source

v1.12.12

Compare Source

v1.12.11

Compare Source

v1.12.10

Compare Source

v1.12.9

Compare Source

v1.12.8

Compare Source

v1.12.7

Compare Source

v1.12.6

Compare Source

v1.12.5

Compare Source

v1.12.4

Compare Source

v1.12.3

Compare Source

v1.12.2

Compare Source

v1.12.1

Compare Source

v1.12.0

Compare Source

v1.11.11

Compare Source

v1.11.10

Compare Source

v1.11.9

Compare Source

v1.11.8

Compare Source

v1.11.7

Compare Source

v1.11.6

Compare Source

v1.11.5

Compare Source

v1.11.4

Compare Source

v1.11.3

Compare Source

v1.11.2

Compare Source

v1.11.1

Compare Source

v1.11.0

Compare Source

v1.10.67

Compare Source

v1.10.66

Compare Source

v1.10.65

Compare Source

v1.10.64

Compare Source

v1.10.63

Compare Source

v1.10.62

Compare Source

v1.10.61

Compare Source

v1.10.60

Compare Source

v1.10.59

Compare Source

v1.10.58

Compare Source

v1.10.57

Compare Source

phpstan/phpstan-deprecation-rules (phpstan/phpstan-deprecation-rules)

v1.2.1

Compare Source

v1.2.0

Compare Source

  • fa8cce7 - Update lock-closed-issues.yml
  • 8342041 - Merge remote-tracking branch 'origin/1.1.x' into 1.2.x
  • d457b73 - Update PHPStan version
  • ff4f00f - Update FetchingDeprecatedConstRuleTest.php
  • 437ac71 - Fix build
  • e9ea332 - Update metcalfc/changelog-generator action to v4.3.1
  • f71dbf6 - Update cbrgm/mastodon-github-action action to v2
  • 10f0e35 - Merge branch '1.1.x' into 1.2.x
  • 674d785 - Fix build
  • e7fe22b - Update metcalfc/changelog-generator action to v4.2.0
  • 83345f7 - Update dessant/lock-threads action to v5
  • 788ea1b - remove phpstan/phpstan-php-parser
  • 4175e8a - Update actions/checkout action to v4
  • f1cacde - Fix a typo
  • 1884f9f - Next-gen coding standard workflow
  • 2313a63 - Modernize rules to use RuleErrorBuilder and report error identifiers
  • ca9e4fd - Open 1.2.x-dev
phpstan/phpstan-phpunit (phpstan/phpstan-phpunit)

v1.4.2

Compare Source

  • 72a6721 - Use more specific node-type
  • 4b6ad7f - Fix
  • bec49ea - Merge branch '1.4.x' into 2.0.x
  • 3cc8554 - Fixes after PHPStan update
  • 09e2d3b - Uncover everything behind the bleedingEdge flag
  • 4d861e0 - Fix after TypeSpecifier BC break
  • 3faa605 - Update build-cs
  • 953195d - Stop testing PHP 7.2 and 7.3
  • 7f1457f - Open 2.0.x

v1.4.1

Compare Source

  • 11d4235 - fix: Make sure Assert::assertIsList correctly asserts an array as list
  • 3cc8554 - Fixes after PHPStan update
  • 09e2d3b - Uncover everything behind the bleedingEdge flag
  • 4d861e0 - Fix after TypeSpecifier BC break
  • 3faa605 - Update build-cs
  • 953195d - Stop testing PHP 7.2 and 7.3
  • 7f1457f - Open 2.0.x

v1.4.0

Compare Source

  • f3ea021 - Update lock-closed-issues.yml
  • f93aec7 - Merge remote-tracking branch 'origin/1.3.x' into 1.4.x
  • 77bdf96 - Update metcalfc/changelog-generator action to v4.3.1
  • 6a1df9a - Update cbrgm/mastodon-github-action action to v2
  • e95a58b - Update metcalfc/changelog-generator action to v4.2.0
  • 77345df - Update dessant/lock-threads action to v5
  • 99bb21e - Merge branch '1.3.x' into 1.4.x
  • ac8ea99 - Update actions/checkout action to v4
  • 529f300 - Merge branch '1.3.x' into 1.4.x
  • 62e883e - Open 1.4.x-dev
  • 97ec1d3 - Merge branch '1.3.x' into 1.4.x
  • 4d99a7d - Require PHPStan 1.11
  • 908e232 - Error identifiers

v1.3.16

Compare Source

  • d5242a5 - Narrow type on assertCount and assertNotCount
phpstan/phpstan-strict-rules (phpstan/phpstan-strict-rules)

v1.6.2

Compare Source

  • b564ca4 - Handle SimpleXMLElement in VariablePropertyFetchRule
  • ed6fea0 - Added strictRulesInstalled parameter
  • a4a6a08 -

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) January 19, 2024 11:24
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 2 times, most recently from d611575 to 9c3f0a1 Compare January 24, 2024 13:20
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 7 times, most recently from b612b8f to 6be1f64 Compare February 5, 2024 13:24
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 2 times, most recently from 5a1d56f to e5fb074 Compare February 12, 2024 22:43
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 4 times, most recently from 3b21d8e to d942e69 Compare February 24, 2024 03:43
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from d942e69 to 967e6c9 Compare February 28, 2024 21:12
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 3 times, most recently from 76c550a to 31419f9 Compare March 13, 2024 15:09
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 5 times, most recently from bdd93c6 to df84aa2 Compare March 23, 2024 11:05
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from df84aa2 to d646721 Compare March 28, 2024 16:43
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 3 times, most recently from 3ec84b3 to 329ffc1 Compare April 8, 2024 17:30
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from 329ffc1 to 23caff5 Compare April 16, 2024 07:29
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 5 times, most recently from ab0fbc3 to 9eafbb5 Compare September 27, 2025 01:10
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from 9eafbb5 to 57de705 Compare September 30, 2025 10:35
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 2 times, most recently from e303982 to 02048e7 Compare October 24, 2025 19:14
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from 02048e7 to e184229 Compare November 6, 2025 23:11
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from e184229 to 1a5809b Compare November 20, 2025 16:58
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 5 times, most recently from 1b90f20 to e5e3e2d Compare December 5, 2025 21:46
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 2 times, most recently from 2e7ed02 to 50bd7fa Compare December 12, 2025 15:32
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 3 times, most recently from 3ace9af to 624196f Compare December 18, 2025 14:07
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 2 times, most recently from eba1e1c to 5881d7d Compare January 9, 2026 00:27
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch 6 times, most recently from c710b64 to 17ece0a Compare January 29, 2026 01:37
@renovate renovate bot force-pushed the renovate/composer-dev-tooling branch from 17ece0a to e2c9796 Compare February 11, 2026 17:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants