Skip to content

build(deps-dev): bump symplify/easy-coding-standard from 11.2.5 to 13.2.1#367

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/symplify/easy-coding-standard-13.2.1
Open

build(deps-dev): bump symplify/easy-coding-standard from 11.2.5 to 13.2.1#367
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/symplify/easy-coding-standard-13.2.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 19, 2026

Copy link
Copy Markdown
Contributor

Bumps symplify/easy-coding-standard from 11.2.5 to 13.2.1.

Release notes

Sourced from symplify/easy-coding-standard's releases.

Released ECS 13.2

The headline of this release: ECS is now a single package. The symplify/coding-standard fixers moved in-tree, and the Laravel container dependency is gone. No breaking changes for users — the Symplify\CodingStandard\Fixer\* class names are unchanged.

⬆️ How to upgrade

If you previously required symplify/coding-standard directly, drop it — it now ships inside ECS:

composer remove symplify/coding-standard --dev
composer require symplify/easy-coding-standard:^13.2 --dev

Your ecs.php needs no changes: the Symplify\CodingStandard\Fixer\* class names are unchanged. If you only ever required symplify/easy-coding-standard, a plain composer update symplify/easy-coding-standard is all you need.

🎯 Highlights

1. symplify/coding-standard merged into ECS (#19)

The 26 custom Symplify fixers ECS has always relied on now live directly in this repository under packages/coding-standard/. ECS could never run without them, and many prepared sets are tightly coupled to them — so maintaining two repos added friction for no benefit.

What this means for you:

  • One package instead of two. composer require symplify/easy-coding-standard --dev no longer pulls in a separate symplify/coding-standard.

  • Class names are unchanged — your existing ecs.php keeps working as-is:

    // ecs.php — still valid, no change needed
    use Symplify\EasyCodingStandard\Config\ECSConfig;
    use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
    return ECSConfig::configure()
    ->withRules([LineLengthFixer::class]);
    ->withPreparedSets(symplify: true);

2. withDocblockLevel() now goes much deeper (#19)

Because the Symplify commenting fixers now ship in-tree, the gradual docblock level gained 11 new rules (24 total). You opt in one level per PR, safest first:

// ecs.php
use Symplify\EasyCodingStandard\Config\ECSConfig;
</tr></table> 

... (truncated)

Commits
  • 678bb7a ECS 13.2.1
  • 924e33a Updated ECS to commit 36a5d8600efbd41d748167dfbe6abe4286330b32
  • 16b250c ECS 13.2.0
  • 810e4c8 Updated ECS to commit f252314bdd9993f7eebcfbbc5b09ee6f15d79c20
  • e3a4d39 Updated ECS to commit f0ad4abe2adb8779d71f022b5445e7c6672e2b90
  • 34f9018 Updated ECS to commit 1d7815a65f0fd3d5f9533b1f5ab2c5d90251a3aa
  • 1059340 Updated ECS to commit 8f72e3c42a736c80617e00b9dec3a822a1566106
  • c83965e Updated ECS to commit 9a00ea6cc6ed3b6db115f7e864a45bfa7ef2eb1f
  • 924ffba Updated ECS to commit 59e67d8f8e604e651ad8abef5e1534ca1ff2482d
  • af5d4a2 ECS 13.1.6
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [symplify/easy-coding-standard](https://github.com/symplify/easy-coding-standard) from 11.2.5 to 13.2.1.
- [Release notes](https://github.com/symplify/easy-coding-standard/releases)
- [Commits](ecsphp/ecs@11.2.5...13.2.1)

---
updated-dependencies:
- dependency-name: symplify/easy-coding-standard
  dependency-version: 13.2.1
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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 Jun 19, 2026
@dependabot dependabot Bot requested a review from lolgab as a code owner June 19, 2026 07:32
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Jun 19, 2026
@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Metrics 0 duplication

Metric Results
Duplication 0

View in Codacy

AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.

Run reviewer

TIP This summary will be updated as you push new changes.

@codacy-production codacy-production Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR attempts a major update to the coding standard tool, but it contains a critical implementation error that will prevent it from functioning. The package symplify/easy-coding-standard has been abandoned and relocated to easy-coding-standard/easy-coding-standard. The proposed changes do not update the vendor name, nor do they address the mandatory migration of the configuration file (ecs.php) to the new ECSConfig API or the requirement for PHP 8.1+. Furthermore, there is no evidence in the PR that the tool has been verified to run successfully against the codebase in its new form.

About this PR

  • The PR lacks verification that the new version of the coding standard tool executes successfully against the current codebase. Please include a successful CI run or local execution logs to confirm compatibility.

Test suggestions

  • Verify the coding standard check executes successfully using the new version without configuration errors.
  • Verify that custom Symplify fixers (e.g., LineLengthFixer) still function correctly despite the architectural merge.
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verify the coding standard check executes successfully using the new version without configuration errors.
2. Verify that custom Symplify fixers (e.g., LineLengthFixer) still function correctly despite the architectural merge.
Low confidence findings
  • Ensure that symplify/coding-standard is removed from your dependencies if it was previously explicitly required, as it has been merged into the main package in recent versions.

TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback

Comment thread composer.json
"require-dev": {
"phpunit/phpunit": "^9.0",
"symplify/easy-coding-standard": "^11.1"
"symplify/easy-coding-standard": "^13.2"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

The package symplify/easy-coding-standard has been abandoned in favor of easy-coding-standard/easy-coding-standard. This major transition requires migrating the configuration to the new ECSConfig API and mandates PHP 8.1+. The composer.json needs to be updated to the new package identity to ensure correct dependency resolution and tool execution.

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