Home

Awesome

Kohana HAPI

HyperMedia Application Programming Interface - A Kohana module to use as a framework for building HTTP APIs.

Screenshot of a HTTP response

In development. Do not use. It is expected that the major (backwards incompatible) versions will be increased rapidly.

What it is

What it is not

Installation

<?php
Route::set(
	'api',
	'api(/<controller>(/<id>(/<action>)))'
)
	->defaults(
	array(
		'directory'  => 'API/V1/',
		'controller' => 'About',
		'action'     => 'index'
	)
);
<?php
$this->hapi(['about' => 'Hello, world']);

TODO