1. Go to this page and download the library: Download stratadox/rest-resource 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/ */
stratadox / rest-resource example snippets
use Stratadox\RestResource\BasicResource;
use Stratadox\RestResource\DefaultJsonFormatter;
use Stratadox\RestResource\Link;
use Stratadox\RestResource\Links;
use Stratadox\RestResource\Type;
$json = DefaultJsonFormatter::fromBaseUri('https://a.server.somewhere/');
$resource = new BasicResource(
'hateoas-resource',
['foo' => 'bar'],
Links::provide(
Link::to('foo/1', Type::get('Foo'))
)
);
$this->assertJsonStringEqualsJsonString(
'{
"hateoas-resource": {
"foo": "bar",
"links": [
{
"href": "server\/foo\/1",
"rel": "Foo",
"type": "GET"
}
]
}
}',
$json->from($resource)
);
use Stratadox\RestResource\BasicResource;
use Stratadox\RestResource\DefaultXmlFormatter;
use Stratadox\RestResource\Link;
use Stratadox\RestResource\Links;
use Stratadox\RestResource\Type;
$xml = DefaultXmlFormatter::fromBaseUri('https://a.server.somewhere/');
$resource = new BasicResource(
'hateoas-resource',
['foo' => 'bar'],
Links::provide(
Link::to('foo/1', Type::get('Foo'))
)
);
$this->assertXmlStringEqualsXmlString(
'<?xml version="1.0"
use Stratadox\RestResource\BasicResource;
use Stratadox\RestResource\CondensedXmlFormatter;
use Stratadox\RestResource\Link;
use Stratadox\RestResource\Links;
use Stratadox\RestResource\Type;
$xml = CondensedXmlFormatter::fromBaseUri('https://a.server.somewhere/');
$resource = new BasicResource(
'hateoas-resource',
['foo' => 'bar'],
Links::provide(
Link::to('foo/1', Type::get('Foo'))
)
);
$this->assertXmlStringEqualsXmlString(
'<?xml version="1.0"