Skip to content

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 = newNocarrier\Hal('/orders');
$hal->addLink('next', '/orders?page=2');
$hal->addLink('search', '/orders?id={order_id}');
$resource = newNocarrier\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

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages