focus / json-api
A collection of tools for working with JSON:API data.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/focus/json-api
Requires
- php: ^8.2
- focus/data: ^2.0
- psr/http-message: ^1.0 || ^2.0
Requires (Dev)
- doctrine/coding-standard: ^12.0
- ergebnis/composer-normalize: ^2.39
- nyholm/psr7: ^1.8
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^10.4
This package is auto-updated.
Last update: 2025-10-16 01:58:28 UTC
README
A collection of tools for working with JSON:API data. This package is an extension of focus/data.
Installation
The best way to install and use this package is with composer:
composer require focus/json-api
Basic Usage
This package provides some structure to reading JSON:API formatted data. Both resource and resource collections are supported.
The typical entry point will be DocumentData:
use Focus\JsonApi\DocumentData; $data = DocumentData::fromRequest($request);
Note: Like JsonData, this package supports reading JSON from
strings and PSR-7 request and response objects.
Once the document is created, the primary data can be accessed as a resource:
$book = $data->resource(); var_dump($book->attribute(path: 'title')); var_dump($book->attribute(path: 'subtitle')); var_dump($book->relation(name: 'author'));
Or a collection of resources:
$books = $data->collection(); var_dump($books->ids());
Or the included resources:
$publishers = $data->included(type: 'publisher'); var_dump($publishers->ids());
Types
Identifiers
The Identifier object extends Data and adds helper methods to read
the type and identifier value:
$id = $data->id(); $type = $data->type();
Resources
The Resource object extends from Identifier and adds helper methods to read
attributes and relationships:
$id = $data->id(); $topics = $data->attribute(path: 'topics'); $author = $data->relation(name: 'author'); $publishers = $data->relations(name: 'publishers');
- The value of
relation()is an identifier of a to-one relationship. When the relationship is undefined,nullwill be returned. When the relationship is defined asnull, a blankIdentifierwill be returned. - The value of
relations()is an identifier collection of a to-many relationship. When the relationship is undefined,nullwill be returned. When the relationship is defined asnull, an emptyIdentifierCollectionwill be returned.
The return values of relation() and relations() are structured this way to allow
determining when a relationship is not present (undefined) versus being unset (null).
Identifier Collections
The IdentifierCollection object represents a collection of Identifier objects
and adds helper methods to read the identifier values:
var_dump($publishers->ids());
The collection can also be iterated:
foreach ($publishers as $publisher) { var_dump($publisher->id()); var_dump($publisher->type()); }
Resource Collections
The ResourceCollection object represents a collection of Resource objects
and adds helper methods to read the identifier values:
var_dump($publishers->ids());
The collection can also be iterated:
foreach ($publishers as $publisher) { var_dump($publisher->id()); var_dump($publisher->attribute(path: 'name')); }