fix(laravel): wire jsonapi.use_iri_as_id in ApiPlatformProvider#8224
Merged
soyuka merged 1 commit intoJun 2, 2026
Merged
Conversation
The Laravel provider ignored the `jsonapi.use_iri_as_id` config key: `JsonApiItemNormalizer` was instantiated without the flag, without `IdentifiersExtractor`, and without `OperationResourceClassResolver`, so `data.id` always held the IRI and `data.links.self` was never emitted. Symfony's `ApiPlatformExtension` already wired this argument; this ports the same wiring to Laravel and adds the config default. Fixes api-platform#8199
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Laravel
ApiPlatformProviderinstantiatedJsonApiItemNormalizerwithout theuseIriAsIdflag, without anIdentifiersExtractor, and without anOperationResourceClassResolver. As a result,api-platform.jsonapi.use_iri_as_id(documented for the Symfony integration) was silently ignored:data.idalways held the IRI anddata.links.selfwas never emitted.Symfony's
ApiPlatformExtension::registerJsonApiConfigurationalready wires the flag as a constructor argument. This PR ports the same wiring to Laravel and adds the config default.src/Laravel/ApiPlatformProvider.php: threadoperationResourceResolver,identifiersExtractor, anduseIriAsIdinto theJsonApiItemNormalizersingleton.src/Laravel/config/api-platform.php: document thejsonapi.use_iri_as_iddefault (true).src/Laravel/Tests/JsonApiUseIriAsIdTest.php: new functional test assertingdata.id= scalar identifier anddata.links.self= IRI when the flag isfalse.Fixes #8199.
Test plan
vendor/bin/phpunit Tests/JsonApiTest.php Tests/JsonApiUseIriAsIdTest.phpfromsrc/Laravel/(14 tests, 52 assertions — pass)data.id= IRI when flag istrueor unset)