1. Go to this page and download the library: Download carlonicora/jsonapi library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
carlonicora / jsonapi example snippets
use \CarloNicora\JsonApi\document;
$document = new Document();
use \CarloNicora\JsonApi\Objects\ResourceObject;
use \CarloNicora\JsonApi\Objects\Link;
$resource = new ResourceObject('journal', 'iajhd80');
$resource->attributes->add('title', 'About phlow - the community media movement');
$resource->links->add(new Link('self', 'https://app.phlow.com/@carlo/journals/about-phlow-the-community-media-movement'));
use \CarloNicora\JsonApi\Objects\ResourceObject;
$array = [
'type' => 'journal',
'id' => 'andsjad897asd',
'attributes' => [
'title' => 'About phlow - the community media movement'
],
'links' => [
'self' => 'https://app.phlow.com/@carlo/journals/about-phlow-the-community-media-movement'
]
];
$resource = new ResourceObject(null, null, $array);
use \CarloNicora\JsonApi\Objects\ResourceObject;
$resource = new ResourceObject('journal', '1');
$userResource = new ResourceObject('user', '10');
$resource->relationship('author')->resourceLinkage->add($userResource);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.