Skip to content

stephenfrank/hal

 
 

Repository files navigation

Nocarrier\Hal

Build Status

This is a library for creating documents in the application/hal+json and application/hal+xml hypermedia formats

It requires PHP 5.3 or later.

<?php $hal = new Nocarrier\Hal('/orders'); $hal->addLink('next', '/orders?page=2'); $hal->addLink('search', '/orders?id={order_id}'); $resource = new Nocarrier\Hal( '/orders/123', array( 'total' => 30.00, 'currency' => 'USD', ) ); $resource->addLink('customer', '/customer/bob', 'Bob Jones <bob@jones.com>'); $hal->addResource('order', $resource); echo $hal->asJson(); echo $hal->asXml();

Installation

The preferred method of installation is via packagist as this provides the PSR-0 autoloader functionality. The following composer.json will download and install the latest version of the Hal library into your project.

{ "require": { "nocarrier/hal": "*" } }

Alternatively, clone the project and install into your project manually.

License

Nocarrier\Hal is licensed under the MIT license.

About

application/hal builder / formatter for PHP 5.3+

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%