borisguery/json-builder

0.2.0 2015-01-13 10:36 UTC

This package is not auto-updated.

Last update: 2024-04-23 06:36:29 UTC


README

Allow to build a JSON string programmatically

Build Status Scrutinizer Code Quality

Table of contents

  1. Overview
  2. Installation
  3. Usage
  4. Known limitations
  5. Testing
  6. Contributing
  7. Authors
  8. License

Overview

<?php

require __DIR__ . '/vendor/autoload.php';

use JsonBuilder\Builder\JsonBuilder;

$jb = new JsonBuilder();
$root = $jb->root('array');
$root
    ->children()
        ->string()
            ->value('Foo')
        ->end()
        ->number()
            ->value(123)
        ->end()
    ->end()
->end();

$json = $jb->build()->toJson();

echo $json;

The above code will return

["Foo", 123]

Installation

Install the library package with composer:

$ php composer.phar require borisguery/json-builder

Usage

Known limitations

Testing

Install development dependencies

$ composer install --dev

Run the test suite

$ vendor/bin/phpunit

Contributing

  1. Take a look at the list of issues.
  2. Fork
  3. Write a test (for either new feature or bug)
  4. Make a PR

Authors

Boris Guéry - guery.b@gmail.com - http://borisguery.com - @borisguery

License

This library is under the MIT license - see the LICENSE file for details