[PR #540] [MERGED] chore(deps-dev): bump squizlabs/php_codesniffer from 3.10.3 to 3.11.1 #1168

Closed
opened 2026-03-15 15:56:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/flyimg/flyimg/pull/540
Author: @dependabot[bot]
Created: 11/18/2024
Status: Merged
Merged: 11/18/2024
Merged by: @sadok-f

Base: mainHead: dependabot/composer/squizlabs/php_codesniffer-3.11.1


📝 Commits (1)

  • 0a1e5a3 chore(deps-dev): bump squizlabs/php_codesniffer from 3.10.3 to 3.11.1

📊 Changes

1 file changed (+5 additions, -5 deletions)

View changed files

📝 composer.lock (+5 -5)

📄 Description

Bumps squizlabs/php_codesniffer from 3.10.3 to 3.11.1.

Release notes

Sourced from squizlabs/php_codesniffer's releases.

3.11.1 - 2024-11-16

Changed

Fixed

  • Fixed bug #674 : Generic.WhiteSpace.HereNowdocIdentifierSpacing broken XML documentation
  • Fixed bug #675 : InvalidArgumentException when a ruleset includes a sniff by file name and the included sniff does not comply with the PHPCS naming conventions.
    • Notwithstanding this fix, it is strongly recommended to ensure custom sniff classes comply with the PHPCS naming conventions.
    • Thanks to Juliette Reinders Folmer for the patch.

New Contributors

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

Statistics

Closed: 1 issue Merged: 11 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!

3.11.0 - 2024-11-12

Added

  • Runtime support for PHP 8.4. All known PHP 8.4 deprecation notices have been fixed.
    • Syntax support for new PHP 8.4 features will follow in a future release.
    • If you find any PHP 8.4 deprecation notices which were missed, please report them.
    • Thanks to Juliette Reinders Folmer for the patches.
  • Tokenizer support for PHP 8.3 "yield from" expressions with a comment between the keywords. #529, #647
    • Sniffs explicitly handling T_YIELD_FROM tokens may need updating. The PR description contains example code for use by sniff developers.
    • Additionally, the following sniff has been updated to support "yield from" expressions with comments:
      • Generic.WhiteSpace.LanguageConstructSpacing
    • Thanks to Juliette Reinders Folmer for the patch.
  • New Generic.WhiteSpace.HereNowdocIdentifierSpacing sniff. #586, #637
    • Forbid whitespace between the <<< and the identifier string in heredoc/nowdoc start tokens.
    • Thanks to Juliette Reinders Folmer for the patch.
  • New Generic.Strings.UnnecessaryHeredoc sniff. #633
    • Warns about heredocs without interpolation or expressions in the body text and can auto-fix these to nowdocs.
    • Thanks to Juliette Reinders Folmer for the patch.
  • Documentation for the following sniffs:
    • Generic.Arrays.ArrayIndent
    • Squiz.PHP.Heredoc

... (truncated)

Changelog

Sourced from squizlabs/php_codesniffer's changelog.

[3.11.1] - 2024-11-16

Changed

  • Output from the --generator=... feature will respect the OS-expected EOL char in more places. #671
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Various housekeeping, including improvements to the tests and documentation.
    • Thanks to [Bartosz Dziewoński][@​MatmaRex] and [Juliette Reinders Folmer][@​jrfnl] for their contributions.

Fixed

  • Fixed bug #674 : Generic.WhiteSpace.HereNowdocIdentifierSpacing broken XML documentation
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Fixed bug #675 : InvalidArgumentException when a ruleset includes a sniff by file name and the included sniff does not comply with the PHPCS naming conventions.
    • Notwithstanding this fix, it is strongly recommended to ensure custom sniff classes comply with the PHPCS naming conventions.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.

#671: PHPCSStandards/PHP_CodeSniffer#671 #674: PHPCSStandards/PHP_CodeSniffer#674 #675: PHPCSStandards/PHP_CodeSniffer#675

[3.11.0] - 2024-11-12

Added

  • Runtime support for PHP 8.4. All known PHP 8.4 deprecation notices have been fixed.
    • Syntax support for new PHP 8.4 features will follow in a future release.
    • If you find any PHP 8.4 deprecation notices which were missed, please report them.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patches.
  • Tokenizer support for PHP 8.3 "yield from" expressions with a comment between the keywords. #529, #647
    • Sniffs explicitly handling T_YIELD_FROM tokens may need updating. The PR description contains example code for use by sniff developers.
    • Additionally, the following sniff has been updated to support "yield from" expressions with comments:
      • Generic.WhiteSpace.LanguageConstructSpacing
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • New Generic.WhiteSpace.HereNowdocIdentifierSpacing sniff. #586, #637
    • Forbid whitespace between the <<< and the identifier string in heredoc/nowdoc start tokens.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • New Generic.Strings.UnnecessaryHeredoc sniff. #633
    • Warns about heredocs without interpolation or expressions in the body text and can auto-fix these to nowdocs.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Documentation for the following sniffs:
    • Generic.Arrays.ArrayIndent
    • Squiz.PHP.Heredoc
    • Thanks to [Rodrigo Primo][@​rodrigoprimo] and [Juliette Reinders Folmer][@​jrfnl] for the patches.

Changed

  • The Common::getSniffCode() method will now throw an InvalidArgumentException exception if an invalid $sniffClass is passed. #524, #625
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Documentation generated using the --generator=... feature will now always be presented in natural order based on the sniff name(s). #668
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Minor improvements to the display of runtime information. #658
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Squiz.Commenting.PostStatementComment: trailing annotations in PHP files will now be reported under a separate, non-auto-fixable error code AnnotationFound. #560, #627

... (truncated)

Commits
  • 19473c3 Merge pull request #691 from PHPCSStandards/feature/changelog-3.11.1
  • 168c0d1 Changelog for the 3.11.1 release
  • 8ed93db Merge pull request #690 from PHPCSStandards/feature/ruleinclusiontests-improv...
  • 7e29324 RuleInclusionTest: add test with directory include
  • 78d3d3d RuleInclusionTest: record code coverage
  • 56784f1 Merge pull request #686 from PHPCSStandards/feature/generator-minor-tweak
  • e11d8f2 Merge pull request #685 from PHPCSStandards/feature/ruleinclusionabsolutewind...
  • 76927ef Generators/Generator: minor tweak
  • 3d64cb2 RuleInclusionAbsoluteWindowsTest: minor tweaks
  • f9c5f18 Generators: add initial set of tests (#671)
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/flyimg/flyimg/pull/540 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/18/2024 **Status:** ✅ Merged **Merged:** 11/18/2024 **Merged by:** [@sadok-f](https://github.com/sadok-f) **Base:** `main` ← **Head:** `dependabot/composer/squizlabs/php_codesniffer-3.11.1` --- ### 📝 Commits (1) - [`0a1e5a3`](https://github.com/flyimg/flyimg/commit/0a1e5a3b664eda09d286f0abccf9b759d2a1d071) chore(deps-dev): bump squizlabs/php_codesniffer from 3.10.3 to 3.11.1 ### 📊 Changes **1 file changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `composer.lock` (+5 -5) </details> ### 📄 Description Bumps [squizlabs/php_codesniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) from 3.10.3 to 3.11.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/releases">squizlabs/php_codesniffer's releases</a>.</em></p> <blockquote> <h2>3.11.1 - 2024-11-16</h2> <h3>Changed</h3> <ul> <li>Output from the <code>--generator=...</code> feature will respect the OS-expected EOL char in more places. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/671">#671</a> <ul> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch.</li> </ul> </li> <li>Various housekeeping, including improvements to the tests and documentation. <ul> <li>Thanks to <a href="https://github.com/MatmaRex">Bartosz Dziewoński</a> and <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for their contributions.</li> </ul> </li> </ul> <h3>Fixed</h3> <ul> <li>Fixed bug <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/674">#674</a> : Generic.WhiteSpace.HereNowdocIdentifierSpacing broken XML documentation <ul> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch.</li> </ul> </li> <li>Fixed bug <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/675">#675</a> : InvalidArgumentException when a ruleset includes a sniff by file name and the included sniff does not comply with the PHPCS naming conventions. <ul> <li>Notwithstanding this fix, it is strongly recommended to ensure custom sniff classes comply with the PHPCS naming conventions.</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch.</li> </ul> </li> </ul> <hr /> <h3>New Contributors</h3> <p>The PHP_CodeSniffer project is happy to welcome the following new contributors: <a href="https://github.com/MatmaRex"><code>@​MatmaRex</code></a></p> <h3>Statistics</h3> <p><strong>Closed</strong>: 1 issue <strong>Merged</strong>: 11 pull requests</p> <p>If you like to stay informed about releases and more, follow <a href="https://phpc.social/@phpcs"><code>@​phpcs on Mastodon</code></a> or <a href="https://twitter.com/PHP_CodeSniffer"><code>@​PHP_CodeSniffer on X</code></a>.</p> <p>Please consider <a href="https://opencollective.com/php_codesniffer">funding the PHP_CodeSniffer project</a>. If you already do so: thank you!</p> <h2>3.11.0 - 2024-11-12</h2> <h3>Added</h3> <ul> <li>Runtime support for PHP 8.4. All known PHP 8.4 deprecation notices have been fixed. <ul> <li>Syntax support for new PHP 8.4 features will follow in a future release.</li> <li>If you find any PHP 8.4 deprecation notices which were missed, please report them.</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patches.</li> </ul> </li> <li>Tokenizer support for PHP 8.3 &quot;yield from&quot; expressions with a comment between the keywords. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/529">#529</a>, <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/647">#647</a> <ul> <li>Sniffs explicitly handling T_YIELD_FROM tokens may need updating. The PR description contains example code for use by sniff developers.</li> <li>Additionally, the following sniff has been updated to support &quot;yield from&quot; expressions with comments: <ul> <li>Generic.WhiteSpace.LanguageConstructSpacing</li> </ul> </li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch.</li> </ul> </li> <li>New <code>Generic.WhiteSpace.HereNowdocIdentifierSpacing</code> sniff. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/586">#586</a>, <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/637">#637</a> <ul> <li>Forbid whitespace between the <code>&lt;&lt;&lt;</code> and the identifier string in heredoc/nowdoc start tokens.</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch.</li> </ul> </li> <li>New <code>Generic.Strings.UnnecessaryHeredoc</code> sniff. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/633">#633</a> <ul> <li>Warns about heredocs without interpolation or expressions in the body text and can auto-fix these to nowdocs.</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch.</li> </ul> </li> <li>Documentation for the following sniffs: <ul> <li>Generic.Arrays.ArrayIndent</li> <li>Squiz.PHP.Heredoc</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/CHANGELOG.md">squizlabs/php_codesniffer's changelog</a>.</em></p> <blockquote> <h2>[3.11.1] - 2024-11-16</h2> <h3>Changed</h3> <ul> <li>Output from the <code>--generator=...</code> feature will respect the OS-expected EOL char in more places. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/671">#671</a> <ul> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>Various housekeeping, including improvements to the tests and documentation. <ul> <li>Thanks to [Bartosz Dziewoński][<a href="https://github.com/MatmaRex"><code>@​MatmaRex</code></a>] and [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for their contributions.</li> </ul> </li> </ul> <h3>Fixed</h3> <ul> <li>Fixed bug <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/674">#674</a> : Generic.WhiteSpace.HereNowdocIdentifierSpacing broken XML documentation <ul> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>Fixed bug <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/675">#675</a> : InvalidArgumentException when a ruleset includes a sniff by file name and the included sniff does not comply with the PHPCS naming conventions. <ul> <li>Notwithstanding this fix, it is strongly recommended to ensure custom sniff classes comply with the PHPCS naming conventions.</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> </ul> <p><a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/671">#671</a>: <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/pull/671">PHPCSStandards/PHP_CodeSniffer#671</a> <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/674">#674</a>: <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/pull/674">PHPCSStandards/PHP_CodeSniffer#674</a> <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/675">#675</a>: <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/675">PHPCSStandards/PHP_CodeSniffer#675</a></p> <h2>[3.11.0] - 2024-11-12</h2> <h3>Added</h3> <ul> <li>Runtime support for PHP 8.4. All known PHP 8.4 deprecation notices have been fixed. <ul> <li>Syntax support for new PHP 8.4 features will follow in a future release.</li> <li>If you find any PHP 8.4 deprecation notices which were missed, please report them.</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patches.</li> </ul> </li> <li>Tokenizer support for PHP 8.3 &quot;yield from&quot; expressions with a comment between the keywords. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/529">#529</a>, <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/647">#647</a> <ul> <li>Sniffs explicitly handling T_YIELD_FROM tokens may need updating. The PR description contains example code for use by sniff developers.</li> <li>Additionally, the following sniff has been updated to support &quot;yield from&quot; expressions with comments: <ul> <li>Generic.WhiteSpace.LanguageConstructSpacing</li> </ul> </li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>New <code>Generic.WhiteSpace.HereNowdocIdentifierSpacing</code> sniff. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/586">#586</a>, <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/637">#637</a> <ul> <li>Forbid whitespace between the <code>&lt;&lt;&lt;</code> and the identifier string in heredoc/nowdoc start tokens.</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>New <code>Generic.Strings.UnnecessaryHeredoc</code> sniff. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/633">#633</a> <ul> <li>Warns about heredocs without interpolation or expressions in the body text and can auto-fix these to nowdocs.</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>Documentation for the following sniffs: <ul> <li>Generic.Arrays.ArrayIndent</li> <li>Squiz.PHP.Heredoc</li> <li>Thanks to [Rodrigo Primo][<a href="https://github.com/rodrigoprimo"><code>@​rodrigoprimo</code></a>] and [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patches.</li> </ul> </li> </ul> <h3>Changed</h3> <ul> <li>The Common::getSniffCode() method will now throw an InvalidArgumentException exception if an invalid <code>$sniffClass</code> is passed. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/524">#524</a>, <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/625">#625</a> <ul> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>Documentation generated using the <code>--generator=...</code> feature will now always be presented in natural order based on the sniff name(s). <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/668">#668</a> <ul> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>Minor improvements to the display of runtime information. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/658">#658</a> <ul> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch.</li> </ul> </li> <li>Squiz.Commenting.PostStatementComment: trailing annotations in PHP files will now be reported under a separate, non-auto-fixable error code <code>AnnotationFound</code>. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/560">#560</a>, <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/627">#627</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/19473c30efe4f7b3cd42522d0b2e6e7f243c6f87"><code>19473c3</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/691">#691</a> from PHPCSStandards/feature/changelog-3.11.1</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/168c0d1bf200c435b47dabcdf59c17bbd17cbe45"><code>168c0d1</code></a> Changelog for the 3.11.1 release</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/8ed93dbe3b9f9f6b2cafac4bad9334a582d1a819"><code>8ed93db</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/690">#690</a> from PHPCSStandards/feature/ruleinclusiontests-improv...</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/7e29324efefc6db1efe3ea0b2e733254f22345d8"><code>7e29324</code></a> RuleInclusionTest: add test with directory include</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/78d3d3d9db029209ad96c8ec2c7a86c32ddf65b5"><code>78d3d3d</code></a> RuleInclusionTest: record code coverage</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/56784f116c2d95446e88c433f681f880966e039a"><code>56784f1</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/686">#686</a> from PHPCSStandards/feature/generator-minor-tweak</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/e11d8f2d603519e0a44f4a0f0bdb8dddb6429113"><code>e11d8f2</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/685">#685</a> from PHPCSStandards/feature/ruleinclusionabsolutewind...</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/76927ef412ea9534dc0939698593686f909e5c26"><code>76927ef</code></a> Generators/Generator: minor tweak</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/3d64cb24a7a4d78531b91bce41cea8c27736a51c"><code>3d64cb2</code></a> RuleInclusionAbsoluteWindowsTest: minor tweaks</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/f9c5f1844c664fd15e126e2d78ec086e577bb2ac"><code>f9c5f18</code></a> Generators: add initial set of tests (<a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/671">#671</a>)</li> <li>Additional commits viewable in <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/compare/3.10.3...3.11.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=squizlabs/php_codesniffer&package-manager=composer&previous-version=3.10.3&new-version=3.11.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 15:56:23 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/flyimg#1168
No description provided.