This is a library for creating the structure of the JSON for PHP.
use JBuilder\Common\Encoder;
echo Encoder::encode(function($json) use ($comments) {
$json->title = "This is a pen";
$json->created_at = (new \DateTime())->format(\DateTime::ISO8601);
$json->updated_at = (new \DateTime())->format(\DateTime::ISO8601);
$json->author(function($json) {
$json->name = "Dai Akatsuka";
$json->email = "[email protected]";
$json->url = "https://github.com/dakatsuka";
});
$json->comments($comments, function($json, $comment) {
$json->content = $comment->getContent();
$json->created_at = $comment->getCreatedAt();
});
});
This will build the following structure:
{
"title": "This is a pen",
"created_at": "2013-05-21T16:49:37+0900",
"updated_at": "2013-05-21T16:49:37+0900",
"author": {
"name": "Dai Akatsuka",
"email": "[email protected]",
"url": "https://github.com/dakatsuka"
},
"comments": [
{
"content": "Hello! Great!",
"created_at": "2013-05-21T16:49:37+0900"
},
{
"content": "Hello! Great!",
"created_at": "2013-05-21T16:49:37+0900"
}
]
}
Add this lines to your composer.json:
{
"require": {
"jbuilder/common": "dev-master"
}
}
And then execute:
$ php composer.phar install
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Copyright (C) 2013 Dai Akatsuka, released under the MIT License.