Skip to content

chore(deps): update all non-major dependencies#172

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#172
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 12, 2025

This PR contains the following updates:

Package Change Age Confidence
overtrue/phplint 9.6.29.7.1 age confidence
phpstan/phpstan 1.12.281.12.33 age confidence
squizlabs/php_codesniffer 3.13.23.13.5 age confidence

Release Notes

overtrue/phplint (overtrue/phplint)

v9.7.1

Compare Source

Fixed
  • PHAR distribution by disabling BOX dump-autoload setting

Full Changelog: 9.7.0...9.7.1

v9.7.0

Compare Source

Fixed
  • PHAR distribution by disabling BOX dump-autoload setting

Full Changelog: 9.7.0...9.7.1

v9.6.3

Compare Source

Changed
  • PHP minimum requirement is now version 8.2.0
  • Symfony minimum requirement is now version 7.4.0
  • #​228 : Make it Symfony 8.0 compatible
Removed
  • support to PHP 8.1
  • support to Symfony 6.4

Full Changelog: 9.6.3...9.7.0

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

v1.12.33

Compare Source

v1.12.32

Compare Source

v1.12.31

Compare Source

v1.12.30

Compare Source

v1.12.29

Compare Source

PHPCSStandards/PHP_CodeSniffer (squizlabs/php_codesniffer)

v3.13.5: - 2025-11-04

Compare Source

Added
  • Runtime support for PHP 8.5. All known PHP 8.5 deprecation notices have been fixed.
    • Syntax support for new PHP 8.5 features will follow in a future release.
    • If you find any PHP 8.5 deprecation notices which were missed, please report them.
Changed
Fixed
  • Fixed bug #​1216: Tokenizer/PHP: added more defensive coding to prevent PHP 8.5 "Using null as an array offset" deprecation notices.
  • Fixed bug #​1279: Tokenizer/PHP: on PHP < 8.0, an unclosed attribute (parse error) could end up removing some tokens from the token stream.
    • This could lead to false positives and false negative from sniffs, but could also lead to incorrect fixes being made mangling the file under scan.
    • Thanks to Juliette Reinders Folmer for the patch.
Other
  • Please be aware that the master branch has been renamed to 3.x and the default branch has changed to the 4.x branch.
    • If you contribute to PHP_CodeSniffer, you will need to update your local git clone.
    • If you develop against PHP_CodeSniffer and run your tests against dev branches of PHPCS, you will need to update your workflows.

New Contributors

The PHP_CodeSniffer project is happy to welcome the following new contributors:
@​andrewnicols

Statistics

Closed: 2 issues
Merged: 36 pull requests

Follow @​phpcs on Mastodon or @​PHP_CodeSniffer on X to stay informed.

Please consider funding the PHP_CodeSniffer project. If you already do so: thank you!

v3.13.4: - 2025-09-05

Compare Source

Fixed
Statistics

Closed: 0 issues
Merged: 3 pull requests

If you like to stay informed about releases and more, follow @​phpcs on Mastodon or @​PHP_CodeSniffer on X.

Please consider funding the PHP_CodeSniffer project. If you already do so: thank you!

v3.13.3: - 2025-09-04

Compare Source

Added
  • Tokenizer support for PHP 8.4 dereferencing of new expressions without wrapping parentheses. #​1160
  • Tokenizer support for PHP 8.4 abstract properties. #​1183
    • The File::getMemberProperties() method now also supports abstract properties through a new is_abstract array index in the return value. #​1184
    • Additionally, the following sniffs have been updated to support abstract properties:
      • Generic.PHP.LowerCaseConstant #​1185
      • Generic.PHP.UpperCaseConstant #​1185
      • PSR2.Classes.PropertyDeclaration #​1188
      • Squiz.Commenting.VariableComment #​1186
      • Squiz.WhiteSpace.MemberVarSpacing #​1187
    • Thanks to Juliette Reinders Folmer for the patches
  • Tokenizer support for the PHP 8.4 "exit as a function call" change. #​1201
    • When exit/die is used as a fully qualified "function call", it will now be tokenized as T_NS_SEPARATOR + T_EXIT.
    • Additionally, the following sniff has been updated to handle fully qualified exit/die correctly:
      • Squiz.PHP.NonExecutableCode
    • Thanks to Juliette Reinders Folmer for the patches
Changed
  • Tokenizer/PHP: fully qualified true/false/null will now be tokenized as T_NS_SEPARATOR + T_TRUE/T_FALSE/T_NULL. #​1201
    • Previously, these were tokenized as T_NS_SEPARATOR + T_STRING.
    • Additionally, the following sniffs have been updated to handle fully qualified true/false/null correctly:
      • Generic.CodeAnalysis.UnconditionalIfStatement
      • Generic.ControlStructures.DisallowYodaConditions
      • PEAR.Functions.ValidDefaultValue
    • Thanks to Juliette Reinders Folmer for the patches.
  • Generic.PHP.Syntax: the sniff is now able to scan input provided via STDIN on non-Windows OSes. #​915
  • PSR2.ControlStructures.SwitchDeclaration: the WrongOpener* error code is now auto-fixable if the identified "wrong opener" is a semi-colon. #​1161
  • The PSR2.Classes.PropertyDeclaration will now check that the abstract modifier keyword is placed before a visibility keyword. #​1188
    • Errors will be reported via a new AbstractAfterVisibility error code.
    • Thanks to Juliette Reinders Folmer for the patch.
  • Various housekeeping, including improvements to the tests and documentation.
Fixed
  • Fixed bug #​1112 : --parallel option fails if PHP_CodeSniffer is invoked via bash and the invokation creates a non-PHPCS-managed process.
  • Fixed bug #​1113 : fatal error when the specified "files to scan" would result in the same file being added multiple times to the queue.
    • This error only occured when --parallel scanning was enabled.
    • Thanks to Rodrigo Primo for the patch.
  • Fixed bug #​1154 : PEAR.WhiteSpace.ObjectOperatorIndent: false positive when checking multiple chained method calls in a multidimensional array.
  • Fixed bug #​1193 : edge case inconsistency in how empty string array keys for sniff properties are handled.
  • Fixed bug #​1197 : Squiz.Commenting.FunctionComment: return types containing a class name with underscores would be truncated leading to incorrect results.
Other

New Contributors

The PHP_CodeSniffer project is happy to welcome the following new contributors:
@​benno5020, @​NanoSector

Statistics

Closed: 11 issues
Merged: 40 pull requests

Follow @​phpcs on Mastodon or @​PHP_CodeSniffer on X to stay informed.

Please consider funding the PHP_CodeSniffer project. If you already do so: thank you!


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/all-minor-patch branch from 1706271 to 0e0e3e6 Compare August 16, 2025 09:28
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.51 chore(deps): update dependency phpunit/phpunit to v10.5.52 Aug 16, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e0e3e6 to bdcff62 Compare August 20, 2025 18:37
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.52 chore(deps): update dependency phpunit/phpunit to v10.5.53 Aug 20, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bdcff62 to 74369cf Compare September 7, 2025 20:14
@renovate renovate bot changed the title chore(deps): update dependency phpunit/phpunit to v10.5.53 chore(deps): update all non-major dependencies Sep 7, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from da5f777 to 2284d67 Compare September 16, 2025 15:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from cee3609 to e544d5e Compare September 28, 2025 13:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e544d5e to 42f206b Compare September 30, 2025 10:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42f206b to 51f001d Compare November 4, 2025 22:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5196fde to 7a145b2 Compare November 27, 2025 15:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8598c3a to daff9ec Compare December 1, 2025 09:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from daff9ec to a08e4c1 Compare March 1, 2026 08:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a08e4c1 to 014c86e Compare March 13, 2026 15:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants