borisguery / json-builder
Installs: 43 759
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 1
Requires (Dev)
- phpunit/phpunit: ~3
This package is not auto-updated.
Last update: 2024-11-19 09:18:05 UTC
README
Allow to build a JSON string programmatically
Table of contents
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
- Take a look at the list of issues.
- Fork
- Write a test (for either new feature or bug)
- 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