dev-master
9999999-dev https://github.com/JoshuaEstes/halProvides HAL json/xml support
MIT
The Development Requires
by Joshua Estes
json xml hal
Wallogit.com
2017 © Pedro Peláez
Provides HAL json/xml support
This package is used to create hal json. It's quick and dirty and the only reason it exists is for my own education. Feel free to use it., (*1)
<?php
use JoshuaEstes\Hal\Link;
use JoshuaEstes\Hal\Resource;
// This is required, you need to give the location of where the user is at
$resource = new Resource(new Link('/location', 'self'));
// Define a new resource
$productResource = new Resource(new Link('/product/123', 'self'), 'products');
$productResource->title = 'Test Product';
// Add the resource to your main resource
$resource->addResource($productResource);
// You can add more links too
$resource->addLink(new Link('/location/next', 'next'));
$resource->addLink(new Link('/location/previous', 'previous'));
// Now you can dump the json
echo $resource->asJson();
Be sure to install composer.phar, (*2)
php composer.phar install --dev php bin/phpunit
Provides HAL json/xml support
MIT
json xml hal