From 07126306897e6c04879887b1b99eebc13209ab43 Mon Sep 17 00:00:00 2001 From: panVag <68543979+panVag@users.noreply.github.com> Date: Thu, 24 Oct 2024 02:32:11 +0300 Subject: [PATCH] Laravel v11 Support (#2) --- composer.json | 6 +++--- tests/Values/EpisodeGuidTest.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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()); }