json

Type safe JSON encoder and decoder for PHP

BSD-3-CLAUSE License

Downloads
1.7M
Stars
0
Committers
1

Json

Safely encode and decode JSON

Installation

You can install the package via composer:

composer require ghostwriter/json

Star ⭐️ this repo if you find it useful

You can also star (🌟) this repo to find it easier later.

Usage

use \Ghostwriter\Json\Json;

$json = new Json();

$encode = $json->encode(['foo'=>'bar']);
// {"foo":"bar"}

$json->validate($encode); // true

$decode = $json->decode($encode);
// ['foo'=>'bar']

$prettyPrint = true;
$json->encode($decode, $prettyPrint); 
// {
//    "foo":"bar"
// }

Credits

Changelog

Please see CHANGELOG.md for more information on what has changed recently.

License

Please see LICENSE for more information on the license that applies to this project.

Security

Please see SECURITY.md for more information on security disclosure process.