Skip to content
This repository was archived by the owner on Aug 31, 2026. It is now read-only.

Bump the composer group across 1 directory with 7 updates - #249

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/api/composer-c5f4e59017
Closed

Bump the composer group across 1 directory with 7 updates#249
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/composer/api/composer-c5f4e59017

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the composer group with 7 updates in the /api directory:

Package From To
symfony/yaml 5.3.6 5.4.52
webonyx/graphql-php 0.13.9 15.32.3
symfony/cache 5.3.4 5.4.53
symfony/dom-crawler 5.3.4 5.4.52
symfony/polyfill-intl-idn 1.23.0 1.38.1
symfony/routing 5.3.4 5.4.53
symfony/security-http 5.3.6 5.4.53

Updates symfony/yaml from 5.3.6 to 5.4.52

Release notes

Sourced from symfony/yaml's releases.

v5.4.52

Changelog (symfony/yaml@v5.4.44...v5.4.52)

v5.4.45

Changelog (symfony/yaml@v5.4.44...v5.4.45)

  • no significant changes

v5.4.44

Changelog (symfony/yaml@v5.4.43...v5.4.44)

v5.4.43

Changelog (symfony/yaml@v5.4.42...v5.4.43)

v5.4.40

Changelog (symfony/yaml@v5.4.39...v5.4.40)

  • no significant changes

v5.4.39

Changelog (symfony/yaml@v5.4.38...v5.4.39)

v5.4.35

Changelog (symfony/yaml@v5.4.34...v5.4.35)

  • no significant changes

v5.4.31

Changelog (symfony/yaml@v5.4.30...v5.4.31)

v5.4.30

Changelog (symfony/yaml@v5.4.29...v5.4.30)

  • no significant changes

v5.4.23

Changelog (symfony/yaml@v5.4.22...v5.4.23)

... (truncated)

Changelog

Sourced from symfony/yaml's changelog.

CHANGELOG

8.0

  • Remove support for parsing duplicate mapping keys whose value is null

7.3

  • Add compact nested mapping support by using the Yaml::DUMP_COMPACT_NESTED_MAPPING flag
  • Add the Yaml::DUMP_FORCE_DOUBLE_QUOTES_ON_VALUES flag to enforce double quotes around string values

7.2

  • Deprecate parsing duplicate mapping keys whose value is null
  • Add support for dumping null as an empty value by using the Yaml::DUMP_NULL_AS_EMPTY flag

7.1

  • Add support for getting all the enum cases with !php/enum Foo

7.0

  • Remove the !php/const: tag, use !php/const instead (without the colon)

6.3

  • Add support to dump int keys as strings by using the Yaml::DUMP_NUMERIC_KEY_AS_STRING flag

6.2

  • Add support for !php/enum and !php/enum *->value
  • Deprecate the !php/const: tag in key which will be replaced by the !php/const tag (without the colon) since 3.4

6.1

  • In cases where it will likely improve readability, strings containing single quotes will be double-quoted

5.4

  • Add a $maxNestingLevel argument to Parser::__construct(), Yaml::parse() and Yaml::parseFile() to bound recursion depth (default 128)

... (truncated)

Commits
  • b0b2705 [Yaml] Harden the Parser::cleanup() regexes against catastrophic backtracking
  • 5a351ff [Yaml] Bound collection-alias resolution in the parser
  • b02ba66 [Yaml] Bound recursion depth in the parser
  • a454d47 Add PR template and auto-close PR on subtree split repositories
  • 7025b96 parse empty sequence elements as null
  • 62f96e1 🐛 throw ParseException on invalid date
  • 81cad0c Revert "minor #54653 Auto-close PRs on subtree-splits (nicolas-grekas)"
  • bc780e1 call substr() with integer offsets
  • a38ba0b Auto-close PRs on subtree-splits
  • e78db7f Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
  • Additional commits viewable in compare view

Updates webonyx/graphql-php from 0.13.9 to 15.32.3

Release notes

Sourced from webonyx/graphql-php's releases.

v15.32.3

Fixed

  • Denial of Service via stack overflow from deeply nested queries in the parser GHSA-r7cg-qjjm-xhqq

v15.32.2

Fixed

  • Denial of Service via quadratic complexity in OverlappingFieldsCanBeMerged validation through inline fragments GHSA-fc86-6rv6-2jpm

v15.32.1

Fix "Cannot traverse an already closed generator" in Schema::getTypeMap() webonyx/graphql-php#1903

v15.32.0

Added

v15.31.5

Fixed

  • Denial of Service via quadratic complexity in OverlappingFieldsCanBeMerged validation GHSA-68jq-c3rv-pcrr

v15.31.4

Changed

v15.31.3

Fixed

v15.31.2

Changed

Fixed

v15.31.1

Fixed

v15.31.0

Added

... (truncated)

Changelog

Sourced from webonyx/graphql-php's changelog.

v15.32.3

Fixed

  • Denial of Service via stack overflow from deeply nested queries in the parser GHSA-r7cg-qjjm-xhqq

v15.32.2

Fixed

  • Denial of Service via quadratic complexity in OverlappingFieldsCanBeMerged validation through inline fragments GHSA-fc86-6rv6-2jpm

v15.32.1

Fixed

v15.32.0

Added

v15.31.5

Fixed

  • Denial of Service via quadratic complexity in OverlappingFieldsCanBeMerged validation GHSA-68jq-c3rv-pcrr

v15.31.4

Changed

v15.31.3

Fixed

v15.31.2

Changed

Fixed

... (truncated)

Upgrade guide

Sourced from webonyx/graphql-php's upgrade guide.

v14.x.x > v15.x.x

BREAKING: Removed error extension field category

The formatting of errors that implement the ClientAware interface no longer contains the key category. This includes both built-in and user-defined errors.

throw new \GraphQL\Error\Error('msg');

Formatting before the change:

'errors' => [
    [
        'message' => 'msg',
        'extensions' => [
            'category' => 'graphql',
        ],
    ],
]

After the change:

'errors' => [
    [
        'message' => 'msg',
    ],
]

The method ClientAware::getCategory() was removed, you may also remove it from your implementations:

use GraphQL\Error\ClientAware;
class MyException extends \Exception implements ClientAware
{
public function isClientSafe(): bool
{
return true;
}

public function getCategory(): string
{

  return 'my-category';


}
</tr></table>

... (truncated)

Commits
  • 993bf0b Release v15.32.3
  • 6c1d600 Address review findings
  • 7b7f208 Add recursion depth limit to prevent stack overflow
  • 8d0f1c5 Release v15.32.2
  • 996adcf Add comparison budget to OverlappingFieldsCanBeMerged
  • ff116ea Document security scope to reduce low-quality advisory submissions
  • 2711a1e Use v4 tag format for ramsey/composer-install action
  • 3874d60 Update ramsey/composer-install action to v4
  • 2340e43 Update dependency phpstan/phpstan to v2.1.51 (#1904)
  • 8405df9 Update dependency phpstan/phpstan to v2.1.50 (#1899)
  • Additional commits viewable in compare view

Updates symfony/cache from 5.3.4 to 5.4.53

Release notes

Sourced from symfony/cache's releases.

v5.4.53

Changelog (symfony/cache@v5.4.52...v5.4.53)

v5.4.52

Changelog (symfony/cache@v5.4.46...v5.4.52)

v5.4.46

Changelog (symfony/cache@v5.4.45...v5.4.46)

v5.4.45

Changelog (symfony/cache@v5.4.44...v5.4.45)

v5.4.44

Changelog (symfony/cache@v5.4.43...v5.4.44)

v5.4.42

Changelog (symfony/cache@v5.4.41...v5.4.42)

Changelog

Sourced from symfony/cache's changelog.

CHANGELOG

8.0

  • Remove CouchbaseBucketAdapter, use CouchbaseCollectionAdapter instead

7.4

  • Bump ext-redis to 6.1 and ext-relay to 0.12 minimum

7.3

  • Add support for \Relay\Cluster in RedisAdapter
  • Add support for valkey: / valkeys: schemes
  • Add support for namespace-based invalidation
  • Rename options "redis_cluster" and "redis_sentinel" to "cluster" and "sentinel" respectively

7.2

  • igbinary_serialize() is no longer used instead of serialize() by default when the igbinary extension is installed, due to behavior compatibilities between the two
  • Add optional Psr\Clock\ClockInterface parameter to ArrayAdapter

7.1

  • Add option sentinel_master as an alias for redis_sentinel
  • Deprecate CouchbaseBucketAdapter, use CouchbaseCollectionAdapter
  • Add support for URL encoded characters in Couchbase DSN
  • Add support for using DSN with PDOAdapter
  • The algorithm for the default cache namespace changed from SHA256 to XXH128

7.0

  • Add parameter $isSameDatabase to DoctrineDbalAdapter::configureSchema()
  • Drop support for Postgres < 9.5 and SQL Server < 2008 in DoctrineDbalAdapter

6.4

  • EarlyExpirationHandler no longer implements MessageHandlerInterface, rely on AsMessageHandler instead

6.3

... (truncated)

Commits
  • bf58147 [Cache] skip tests for adapters that cannot clear by prefix
  • 4acd37c [Cache] Accept '_' and ':' in prefix passed to AbstractAdapter::clear()
  • 03b191d [Cache] Validate the prefix given to AbstractAdapter::clear()
  • 0fe08ee [Cache] Fix clear() when using Predis
  • 12b03e3 Revert "bug #58661 [Cache] Initialize RedisAdapter cursor to 0 (thomas-hiron)"
  • e135eb8 initialize RedisAdapter cursor to 0
  • c2b90da do not skip tests from data providers
  • 6cf23ad drop existing schema if tests create it explicitly
  • 7050072 do not mix named and positional arguments in data provider definitions
  • 911f2bc do not use TestCase::getName() when possible
  • Additional commits viewable in compare view

Updates symfony/dom-crawler from 5.3.4 to 5.4.52

Release notes

Sourced from symfony/dom-crawler's releases.

v5.4.52

Changelog (symfony/dom-crawler@v5.4.48...v5.4.52)

v5.4.48

Changelog (symfony/dom-crawler@v5.4.47...v5.4.48)

v5.4.45

Changelog (symfony/dom-crawler@v5.4.44...v5.4.45)

v5.4.44

Changelog (symfony/dom-crawler@v5.4.43...v5.4.44)

v5.4.40

Changelog (symfony/dom-crawler@v5.4.39...v5.4.40)

  • no significant changes

v5.4.39

Changelog (symfony/dom-crawler@v5.4.38...v5.4.39)

v5.4.35

Changelog (symfony/dom-crawler@v5.4.34...v5.4.35)

  • no significant changes

v5.4.32

Changelog (symfony/dom-crawler@v5.4.31...v5.4.32)

v5.4.25

Changelog (symfony/dom-crawler@v5.4.24...v5.4.25)

  • no significant changes

v5.4.23

Changelog (symfony/dom-crawler@v5.4.22...v5.4.23)

  • bug #49983 Avoid passing null to substr/strrpos methods (VincentLanglet)

... (truncated)

Changelog

Sourced from symfony/dom-crawler's changelog.

CHANGELOG

8.1

  • Make ChoiceFormField::addChoice() part of the supported public API
  • Always set LIBXML_NONET in Crawler::addXmlContent() so external entities cannot trigger network requests

8.0

  • Remove argument $useHtml5Parser of Crawler's constructor; the native HTML5 parser is used unconditionally

7.4

  • Disabling HTML5 parsing is deprecated; Symfony 8 will unconditionally use the native HTML5 parser

7.0

  • Add argument $normalizeWhitespace to Crawler::innerText()
  • Add argument $default to Crawler::attr()

6.4

  • Add CrawlerAnySelectorTextContains test constraint
  • Add CrawlerAnySelectorTextSame test constraint
  • Add argument $default to Crawler::attr()

6.3

  • Add $useHtml5Parser argument to Crawler
  • Add CrawlerSelectorCount test constraint
  • Add argument $normalizeWhitespace to Crawler::innerText()
  • Make Crawler::innerText() return the first non-empty text

6.0

  • Remove Crawler::parents() method, use ancestors() instead

5.4

  • Add Crawler::innerText method.

... (truncated)

Commits
  • b4cf17f [DomCrawler] Fix XXE in addXmlContent() by not enabling validateOnParse
  • b57df76 Work around parse_url() bug (bis)
  • 89647a5 Minor fixes around parse_url() checks
  • 7111520 Add PR template and auto-close PR on subtree split repositories
  • 4c76e41 Work around parse_url() bug
  • 2ad469c Revert "minor #54653 Auto-close PRs on subtree-splits (nicolas-grekas)"
  • 1dffb11 Auto-close PRs on subtree-splits
  • 000634e [DomCrawler] Encode html entities only if nessecary
  • e3b4806 Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
  • 728f1fc [DomCrawler] Revert "bug #52579 UriResolver support path with colons"
  • Additional commits viewable in compare view

Updates symfony/polyfill-intl-idn from 1.23.0 to 1.38.1

Release notes

Sourced from symfony/polyfill-intl-idn's releases.

v1.38.1

Changelog (symfony/polyfill-intl-idn@v1.31.0...v1.38.1)

v1.37.0

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

  • no significant changes

v1.36.0

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

  • no significant changes

v1.35.0

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

  • no significant changes

v1.34.0

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

  • no significant changes
Commits
  • dc21118 [Intl][Idn] Reject xn-- labels whose Punycode payload decodes to ASCII-only
  • 9614ac4 Give testing some love
  • c36586d Bump to PHP 7.2, stick to phpunit 8.5
  • a6e83bd Revert "minor #477 Auto-close PRs on subtree-splits (kbond)"
  • 872bf45 Auto-close PRs on subtree-splits
  • 412b0a6 Conform to IDNA version 15.1.0 revision 31
  • a287ed7 Remove branch-alias from composer.json
  • ecaafce feature #334 [PHP 8.1] Add CURLStringFile polyfill (Ayesh, nicolas-grekas)
  • b5b0079 CS fix
  • 5a42f2d Bump for 1.28
  • Additional commits viewable in compare view

Updates symfony/routing from 5.3.4 to 5.4.53

Release notes

Sourced from symfony/routing's releases.

v5.4.53

Changelog (symfony/routing@v5.4.52...v5.4.53)

v5.4.52

Changelog (symfony/routing@v5.4.48...v5.4.52)

v5.4.48

Changelog (symfony/routing@v5.4.47...v5.4.48)

v5.4.45

Changelog (symfony/routing@v5.4.44...v5.4.45)

  • no significant changes

v5.4.43

Changelog (symfony/routing@v5.4.42...v5.4.43)

  • no significant changes

v5.4.42

Changelog (symfony/routing@v5.4.41...v5.4.42)

v5.4.40

Changelog (symfony/routing@v5.4.39...v5.4.40)

  • no significant changes

v5.4.39

Changelog (symfony/routing@v5.4.38...v5.4.39)

  • no significant changes

v5.4.38

Changelog (symfony/routing@v5.4.37...v5.4.38)

  • no significant changes

v5.4.37

Changelog (symfony/routing@v5.4.36...v5.4.37)

... (truncated)

Commits
  • f4ca0c5 [Routing] Fix dot-segment encoding for chained "../" and "./" in generated URLs
  • 275b313 [Routing] Fix regex alternation anchoring in UrlGenerator requirement validation
  • dd08c19 [Routing] Fix: lost priority when defining hosts in configuration
  • 986597b do not use TestCase::getName() when possible
  • 7289d3c Add PR template and auto-close PR on subtree split repositories
  • b6f7178 Fix typos
  • f8dd6f8 use more entropy with uniqid()
  • c99c74b bug #57645 [Routing] Discard in-memory cache of routes when writing the file-...
  • 7bec6df [Router] Discard in-memory cache of routes when writing the file-based cache
  • 6df1dd8 Revert "minor #54653 Auto-close PRs on subtree-splits (nicolas-grekas)"
  • Additional commits viewable in compare view

Updates symfony/security-http from 5.3.6 to 5.4.53

Release notes

Sourced from symfony/security-http's releases.

v5.4.53

Changelog (symfony/security-http@v5.4.52...v5.4.53)

v5.4.52

Changelog (symfony/security-http@v5.4.47...v5.4.52)

v5.4.47

Changelog (symfony/security-http@v5.4.46...v5.4.47)

v5.4.46

Changelog (symfony/security-http@v5.4.45...v5.4.46)

v5.4.45

Changelog (symfony/security-http@v5.4.44...v5.4.45)

  • no significant changes

v5.4.44

Changelog (symfony/security-http@v5.4.43...v5.4.44)

v5.4.43

Changelog (symfony/security-http@v5.4.42...v5.4.43)

v5.4.41

Changelog (symfony/security-http@v5.4.40...v5.4.41)

v5.4.40

Changelog (symfony/security-http@v5.4.39...v5.4.40)

  • no significant changes

v5.4.39

Changelog (symfony/security-http@v5.4.38...v5.4.39)

... (truncated)

Changelog

Sourced from symfony/security-http's changelog.

CHANGELOG

8.1

  • Add support for the clientHints, prefetchCache, and prerenderCache ClearSite-Data directives
  • Add this to #[IsGranted] subject expression variables when available
  • Add support for closures and this in #[IsCsrfTokenValid] when evaluating its id
  • Add $enforceKeyUsageVerification argument to OidcTokenHandler::enableDiscovery() to allow accepting JWKs lacking use/key_ops (lax mode)
  • Deprecate the $eraseCredentials argument of AuthenticatorManager::__construct(), as the eraseCredentials() method was removed in Symfony 8.0

8.0

  • When extending the RememberMeDetails class and overriding its constructor, the $userFqcn parameter has to be removed from its signature:

    Before:

    class CustomRememberMeDetails extends RememberMeDetails
    {
        public function __construct(string $userFqcn, string $userIdentifier, int $expires, string $value)
        {
            parent::__construct($userFqcn, $userIdentifier, $expires, $value);
        }
    }

    After:

    class CustomRememberMeDetails extends RememberMeDetails
    {
        public function __construct(string $userIdentifier, int $expires, string $value)
        {
            parent::__construct($userIdentifier, $expires, $value);
        }
    }
  • Remove RememberMeDetails::getUserFqcn()

  • Remove callable firewall listeners support, extend AbstractListener or implement FirewallListenerInterface instead

  • Remove AbstractListener::__invoke

  • Throw a BadCredentialsException when passing an empty string as $userIdentifier argument to UserBadge constructor

  • Accept only ExposeSecurityLevel enums for AuthenticatorManager's $exposeSecurityErrors argument

  • Respectively accept only AlgorithmManager and JWKSet for OidcTokenHandler's $signatureAlgorithm and $signatureKeyset arguments

  • Add argument $attributes to UserAuthenticatorInterface::authenticateUser()

7.4

... (truncated)

Commits
  • 119cc48 [Security] Don't honor user-supplied _failure_path on failure_forward
  • 355f32f [Security] Anchor emailAddress regex to RDN boundary in X509Authenticator
  • cde02b0 [security-http] Check owner of persisted remember-me cookie
  • 7152f0e [Security] Store original token in token storage when implicitly exiting impe...
  • 8a4986d Add PR template and auto-close PR on subtree split repositories
  • c0f8159 Work around parse_url() bug
  • dc6de50 Revert stateless check
  • 14d271e [HttpKernel][Security] Fix accessing session for stateless request
  • 7194820 Revert "minor #54653 Auto-close PRs on subtree-splits (nicolas-grekas)"
  • 1957999 minor #54785 Remove calls to TestCase::iniSet() and calls to deprecated met...
  • Additional commits viewable in compare view

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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the composer group with 7 updates in the /api directory:

| Package | From | To |
| --- | --- | --- |
| [symfony/yaml](https://github.com/symfony/yaml) | `5.3.6` | `5.4.52` |
| [webonyx/graphql-php](https://github.com/webonyx/graphql-php) | `0.13.9` | `15.32.3` |
| [symfony/cache](https://github.com/symfony/cache) | `5.3.4` | `5.4.53` |
| [symfony/dom-crawler](https://github.com/symfony/dom-crawler) | `5.3.4` | `5.4.52` |
| [symfony/polyfill-intl-idn](https://github.com/symfony/polyfill-intl-idn) | `1.23.0` | `1.38.1` |
| [symfony/routing](https://github.com/symfony/routing) | `5.3.4` | `5.4.53` |
| [symfony/security-http](https://github.com/symfony/security-http) | `5.3.6` | `5.4.53` |



Updates `symfony/yaml` from 5.3.6 to 5.4.52
- [Release notes](https://github.com/symfony/yaml/releases)
- [Changelog](https://github.com/symfony/yaml/blob/8.2/CHANGELOG.md)
- [Commits](symfony/yaml@v5.3.6...v5.4.52)

Updates `webonyx/graphql-php` from 0.13.9 to 15.32.3
- [Release notes](https://github.com/webonyx/graphql-php/releases)
- [Changelog](https://github.com/webonyx/graphql-php/blob/master/CHANGELOG.md)
- [Upgrade guide](https://github.com/webonyx/graphql-php/blob/master/UPGRADE.md)
- [Commits](webonyx/graphql-php@v0.13.9...v15.32.3)

Updates `symfony/cache` from 5.3.4 to 5.4.53
- [Release notes](https://github.com/symfony/cache/releases)
- [Changelog](https://github.com/symfony/cache/blob/8.2/CHANGELOG.md)
- [Commits](symfony/cache@v5.3.4...v5.4.53)

Updates `symfony/dom-crawler` from 5.3.4 to 5.4.52
- [Release notes](https://github.com/symfony/dom-crawler/releases)
- [Changelog](https://github.com/symfony/dom-crawler/blob/8.2/CHANGELOG.md)
- [Commits](symfony/dom-crawler@v5.3.4...v5.4.52)

Updates `symfony/polyfill-intl-idn` from 1.23.0 to 1.38.1
- [Release notes](https://github.com/symfony/polyfill-intl-idn/releases)
- [Commits](symfony/polyfill-intl-idn@v1.23.0...v1.38.1)

Updates `symfony/routing` from 5.3.4 to 5.4.53
- [Release notes](https://github.com/symfony/routing/releases)
- [Changelog](https://github.com/symfony/routing/blob/8.2/CHANGELOG.md)
- [Commits](symfony/routing@v5.3.4...v5.4.53)

Updates `symfony/security-http` from 5.3.6 to 5.4.53
- [Release notes](https://github.com/symfony/security-http/releases)
- [Changelog](https://github.com/symfony/security-http/blob/8.2/CHANGELOG.md)
- [Commits](symfony/security-http@v5.3.6...v5.4.53)

---
updated-dependencies:
- dependency-name: symfony/yaml
  dependency-version: 5.4.52
  dependency-type: direct:production
  dependency-group: composer
- dependency-name: webonyx/graphql-php
  dependency-version: 15.32.3
  dependency-type: direct:production
  dependency-group: composer
- dependency-name: symfony/cache
  dependency-version: 5.4.53
  dependency-type: indirect
  dependency-group: composer
- dependency-name: symfony/dom-crawler
  dependency-version: 5.4.52
  dependency-type: indirect
  dependency-group: composer
- dependency-name: symfony/polyfill-intl-idn
  dependency-version: 1.38.1
  dependency-type: indirect
  dependency-group: composer
- dependency-name: symfony/routing
  dependency-version: 5.4.53
  dependency-type: indirect
  dependency-group: composer
- dependency-name: symfony/security-http
  dependency-version: 5.4.53
  dependency-type: indirect
  dependency-group: composer
...

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 5, 2026
@rubenvdlinde

Copy link
Copy Markdown
Collaborator

Closing: this repository has been archived. Its default branch has had no commit for over two years.

@dependabot @github

dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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.

1 participant