Skip to content

ghostwriter/json

Json

GitHub Sponsors Automation Supported PHP Version Downloads

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.

About

Safely encode and decode JSON

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published