diff --git a/composer.json b/composer.json index 83ac681..ee345ff 100644 --- a/composer.json +++ b/composer.json @@ -20,9 +20,9 @@ "require": { "php": ">=8.1", "saloonphp/xml-wrangler": "^1.2", - "illuminate/collections": "^10.48", - "illuminate/http": "^10.48", - "illuminate/support": "^10.48", + "illuminate/collections": "^10.48|^11.23", + "illuminate/http": "^10.48|^11.23", + "illuminate/support": "^10.48|^11.23", "guzzlehttp/guzzle": "^7.8", "psr/http-client": "^1.0" }, diff --git a/tests/Values/EpisodeGuidTest.php b/tests/Values/EpisodeGuidTest.php index 258e9fd..12808f8 100644 --- a/tests/Values/EpisodeGuidTest.php +++ b/tests/Values/EpisodeGuidTest.php @@ -19,7 +19,7 @@ public function testCreateFromXmlElement(): void $guid = EpisodeGuid::fromXmlElement($element); self::assertEqualsCanonicalizing([ - 'content' => 'a34d23b2-0cc0-4851-88fe-e3d9b74f4c31', + 'value' => 'a34d23b2-0cc0-4851-88fe-e3d9b74f4c31', 'is_perma_link' => false, ], $guid->toArray()); }