Skip to content

chore(deps-dev): bump the php-dev-tools group across 1 directory with 6 updates - #7057

Open
dependabot[bot] wants to merge 1 commit into
4.4from
dependabot/composer/php-dev-tools-e834ae549b
Open

chore(deps-dev): bump the php-dev-tools group across 1 directory with 6 updates#7057
dependabot[bot] wants to merge 1 commit into
4.4from
dependabot/composer/php-dev-tools-e834ae549b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 16, 2026

Copy link
Copy Markdown
Contributor

Bumps the php-dev-tools group with 6 updates in the / directory:

Package From To
phpstan/phpstan 2.1.44 2.2.8
phpstan/phpstan-doctrine 2.0.20 2.0.28
rector/rector 2.3.9 2.6.1
symfony/phpunit-bridge 8.1.1 8.1.4
myclabs/deep-copy 1.13.4 1.14.0
symfony/polyfill-iconv 1.33.0 1.37.0

Updates phpstan/phpstan from 2.1.44 to 2.2.8

Commits

Updates phpstan/phpstan-doctrine from 2.0.20 to 2.0.28

Release notes

Sourced from phpstan/phpstan-doctrine's releases.

2.0.28

2.0.27

  • 39b4ca4 - Fix incorrect stub change of criteria arg (#768)

2.0.26

  • edea68b - Update github-actions (#765)
  • 22cd60b - Sync ObjectRepository stub types with Doctrine (#767)
  • cff83bf - Fix one more test
  • 78df87c - Update more tests
  • efa7cca - Adjust test for more precise decimal-int-string type

2.0.25

  • e20e8bf - Fix duplicate registration of RepositoryMethodCallRule (#764)

2.0.24

  • 5485522 - Check field names of orderBy parameter in findBy and findOneBy

2.0.23

  • 4821d67 - Replace deprecated actions/create-release with softprops/action-gh-release
  • c6c0ee2 - Bump GitHub Actions across major versions
  • 7728233 - Bump GitHub Actions within their current majors
  • 20bd086 - Update test for phpstan 2.2 (#759)
  • 5e4d0b2 - Support Doctrine NumberType (#754)
  • a19c4b2 - Fix doctrine CI (#758)
  • c3a182e - Update github-actions
  • d022f3f - latest infection does not support PHP 8.2 (#752)
  • 4af7048 - Update release-toot.yml (#751)
  • d417606 - CI: move name-collision job into build.yml (#750)

2.0.22

  • e87516b - Remove Reflector from StubFilesExtensionLoader (#747)
  • 414ca85 - Add collision-detector.json to export-ignore in .gitattributes (#746)
  • 8af50e2 - name-collision-detector (#745)
  • fb8f874 - Rely on same template name than doctrine (#744)
  • 983c304 - Fix return type on EntityRepository::matching() generics (#743)

2.0.21

  • 81dac0e - Add literal string types for prepare method (#734)
  • 1650f18 - Cleanup EntityRepositoryClassReflectionExtension (#740)
Commits

Updates rector/rector from 2.3.9 to 2.6.1

Release notes

Sourced from rector/rector's releases.

Released Rector 2.6.1

Bugfix 🐛

  • [composer-based] Fix fatal error in the composer-based command on a lazy-initialized property, e.g. PHPStan UnionType::$normalized (#8280)
PHP Fatal error:  Uncaught Error: Typed property PHPStan\Type\UnionType::$normalized
must not be accessed before initialization in src/Console/Command/ComposerBasedCommand.php:205

Composer-based sets keep growing: Twig, nette/utils and the rest of Symfony 📦

Follow-up release to 2.6.0. The composer-based rollout continues - Twig and nette/utils join, and every remaining Symfony rule now declares the package version its target API was added in.

use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withComposerBased(
doctrine: true,
netteUtils: true,
phpunit: true,
symfony: true,
twig: true,
);

The new Twig composer-based set replaces the twig112twig127 → ... → twig30 chain with a single set, where every rule checks the installed twig/twig version:

 final class SomeTwigUse
 {
-    public function run(Twig_Environment $twigEnvironment)
+    public function run(\Twig\Environment $twigEnvironment)
     {
-        return new Twig_SimpleFilter('some_filter', 'strlen');
+        return new \Twig\TwigFilter('some_filter', 'strlen');
     }
 }

Package bonding (composer-based rollout) 📦

  • [NetteUtils] Bind nette/utils rules to the installed package version; nette-utils4.php becomes composer-based.php and is loaded as a single set (#8275)

... (truncated)

Commits
  • b8e68f0 Rector 2.6.1
  • 8d4664e Updated Rector to commit 16be33c1c2364d51038752a299fce01043d42576
  • 834ed36 Updated Rector to commit 4e11a4088c0634076742b71dc9db4cfbeab4a207
  • 77f9eec Updated Rector to commit 4e11a4088c0634076742b71dc9db4cfbeab4a207
  • 55176b4 Updated Rector to commit 4e11a4088c0634076742b71dc9db4cfbeab4a207
  • c529f35 Updated Rector to commit 72f8056755dc28dd1a8ab8f39900259f129ebae8
  • 080ed0f Updated Rector to commit 72f8056755dc28dd1a8ab8f39900259f129ebae8
  • 30c1e33 Updated Rector to commit 72f8056755dc28dd1a8ab8f39900259f129ebae8
  • 8e262e1 Updated Rector to commit 952266b6d64f923f9d6d4390e423e4ab65a953c6
  • 2ca9c01 Updated Rector to commit da48be85d84c065d1f018c9074694980d2351e77
  • Additional commits viewable in compare view

Updates symfony/phpunit-bridge from 8.1.1 to 8.1.4

Release notes

Sourced from symfony/phpunit-bridge's releases.

v8.1.4

Changelog (symfony/phpunit-bridge@v8.1.2...v8.1.4)

v8.1.2

Changelog (symfony/phpunit-bridge@v8.1.1...v8.1.2)

Commits
  • 98adc9c Merge branch '7.4' into 8.1
  • 49757f7 Merge branch '6.4' into 7.4
  • 426ba57 [PhpUnitBridge] Don't return a non-callable from getPhpUnitErrorHandler()
  • b0a06b7 [PhpUnitBridge] Fix finding a config file given by its exact name
  • See full diff in compare view

Updates myclabs/deep-copy from 1.13.4 to 1.14.0

Release notes

Sourced from myclabs/deep-copy's releases.

1.14.0

What's Changed

PHP 8.6 is supported and PHP 7.x support has been dropped (8.0 or greater is required now).

Full Changelog: myclabs/DeepCopy@1.13.4...1.14.0

Commits

Updates symfony/polyfill-iconv from 1.33.0 to 1.37.0

Release notes

Sourced from symfony/polyfill-iconv's releases.

v1.37.0

Changelog (symfony/polyfill-iconv@v1.36.0...v1.37.0)

  • no significant changes

v1.36.0

Changelog (symfony/polyfill-iconv@v1.35.0...v1.36.0)

  • no significant changes

v1.35.0

Changelog (symfony/polyfill-iconv@v1.34.0...v1.35.0)

  • no significant changes

v1.34.0

Changelog (symfony/polyfill-iconv@v1.33.0...v1.34.0)

  • no significant changes
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… 6 updates

Bumps the php-dev-tools group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [phpstan/phpstan](https://github.com/phpstan/phpstan-phar-composer-source) | `2.1.44` | `2.2.8` |
| [phpstan/phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine) | `2.0.20` | `2.0.28` |
| [rector/rector](https://github.com/rectorphp/rector) | `2.3.9` | `2.6.1` |
| [symfony/phpunit-bridge](https://github.com/symfony/phpunit-bridge) | `8.1.1` | `8.1.4` |
| [myclabs/deep-copy](https://github.com/myclabs/DeepCopy) | `1.13.4` | `1.14.0` |
| [symfony/polyfill-iconv](https://github.com/symfony/polyfill-iconv) | `1.33.0` | `1.37.0` |



Updates `phpstan/phpstan` from 2.1.44 to 2.2.8
- [Commits](https://github.com/phpstan/phpstan-phar-composer-source/commits)

Updates `phpstan/phpstan-doctrine` from 2.0.20 to 2.0.28
- [Release notes](https://github.com/phpstan/phpstan-doctrine/releases)
- [Commits](phpstan/phpstan-doctrine@2.0.20...2.0.28)

Updates `rector/rector` from 2.3.9 to 2.6.1
- [Release notes](https://github.com/rectorphp/rector/releases)
- [Commits](rectorphp/rector@2.3.9...2.6.1)

Updates `symfony/phpunit-bridge` from 8.1.1 to 8.1.4
- [Release notes](https://github.com/symfony/phpunit-bridge/releases)
- [Changelog](https://github.com/symfony/phpunit-bridge/blob/8.2/CHANGELOG.md)
- [Commits](symfony/phpunit-bridge@v8.1.1...v8.1.4)

Updates `myclabs/deep-copy` from 1.13.4 to 1.14.0
- [Release notes](https://github.com/myclabs/DeepCopy/releases)
- [Commits](myclabs/DeepCopy@1.13.4...1.14.0)

Updates `symfony/polyfill-iconv` from 1.33.0 to 1.37.0
- [Release notes](https://github.com/symfony/polyfill-iconv/releases)
- [Commits](symfony/polyfill-iconv@v1.33.0...v1.37.0)

---
updated-dependencies:
- dependency-name: phpstan/phpstan
  dependency-version: 2.2.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: php-dev-tools
- dependency-name: phpstan/phpstan-doctrine
  dependency-version: 2.0.28
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: php-dev-tools
- dependency-name: rector/rector
  dependency-version: 2.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: php-dev-tools
- dependency-name: symfony/phpunit-bridge
  dependency-version: 8.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: php-dev-tools
- dependency-name: myclabs/deep-copy
  dependency-version: 1.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: php-dev-tools
- dependency-name: symfony/polyfill-iconv
  dependency-version: 1.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: php-dev-tools
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Aug 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants