Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 38 additions & 26 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,17 +144,17 @@
},
{
"name": "symfony/dom-crawler",
"version": "v6.4.25",
"version_normalized": "6.4.25.0",
"version": "v6.4.40",
"version_normalized": "6.4.40.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
"reference": "976302990f9f2a6d4c07206836dd4ca77cae9524"
"reference": "7e65f76c28f5ed8d933f2c86698a3e2bf0de1b10"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/976302990f9f2a6d4c07206836dd4ca77cae9524",
"reference": "976302990f9f2a6d4c07206836dd4ca77cae9524",
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/7e65f76c28f5ed8d933f2c86698a3e2bf0de1b10",
"reference": "7e65f76c28f5ed8d933f2c86698a3e2bf0de1b10",
"shasum": ""
},
"require": {
Expand All @@ -166,7 +166,7 @@
"require-dev": {
"symfony/css-selector": "^5.4|^6.0|^7.0"
},
"time": "2025-08-05T18:56:08+00:00",
"time": "2026-05-19T20:33:22+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand Down Expand Up @@ -194,7 +194,7 @@
"description": "Eases DOM navigation for HTML and XML documents",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/dom-crawler/tree/v6.4.25"
"source": "https://github.com/symfony/dom-crawler/tree/v6.4.40"
},
"funding": [
{
Expand Down
6 changes: 3 additions & 3 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
'dev_requirement' => false,
),
'symfony/dom-crawler' => array(
'pretty_version' => 'v6.4.25',
'version' => '6.4.25.0',
'reference' => '976302990f9f2a6d4c07206836dd4ca77cae9524',
'pretty_version' => 'v6.4.40',
'version' => '6.4.40.0',
'reference' => '7e65f76c28f5ed8d933f2c86698a3e2bf0de1b10',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/dom-crawler',
'aliases' => array(),
Expand Down
1 change: 0 additions & 1 deletion vendor/symfony/dom-crawler/Crawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ public function addXmlContent(string $content, string $charset = 'UTF-8', int $o
$internalErrors = libxml_use_internal_errors(true);

$dom = new \DOMDocument('1.0', $charset);
$dom->validateOnParse = true;

if ('' !== trim($content)) {
@$dom->loadXML($content, $options);
Expand Down
6 changes: 5 additions & 1 deletion vendor/symfony/dom-crawler/Field/ChoiceFormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ public function addChoice(\DOMElement $node): void
$this->options[] = $option;

if ($node->hasAttribute('checked')) {
$this->value = $option['value'];
if ($this->multiple) {
$this->value[] = $option['value'];
} else {
$this->value = $option['value'];
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/symfony/dom-crawler/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function getPhpFiles(): array

array_walk_recursive(
$expandedValue,
function (&$value, $key) {
static function (&$value, $key) {
if (ctype_digit($value) && ('size' === $key || 'error' === $key)) {
$value = (int) $value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ protected function matches($other): bool

$this->hasNode = true;

$nodes = $other->each(fn (Crawler $node) => $node->text(null, true));
$matches = array_filter($nodes, function (string $node): bool {
return str_contains($node, $this->expectedText);
});
$nodes = $other->each(static fn (Crawler $node) => $node->text(null, true));
$matches = array_filter($nodes, fn (string $node): bool => str_contains($node, $this->expectedText));

return 0 < \count($matches);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected function matches($other): bool
return false;
}

$nodes = $other->each(fn (Crawler $node) => trim($node->text(null, true)));
$nodes = $other->each(static fn (Crawler $node) => trim($node->text(null, true)));

return \in_array($this->expectedText, $nodes, true);
}
Expand Down
Loading