Skip to content

Commit

Permalink
Laravel v11 Support (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
panVag authored Oct 23, 2024
1 parent f903fe3 commit 0712630
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/Values/EpisodeGuidTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit 0712630

Please sign in to comment.