beste / json
A simple JSON helper to decode and encode JSON
1.7.0
2025-09-11 23:36 UTC
Requires
- php: ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0
- ext-json: *
Requires (Dev)
- phpstan/extension-installer: ^1.3
- phpstan/phpstan: ^2.0.4
- phpstan/phpstan-phpunit: ^2.0.2
- phpstan/phpstan-strict-rules: ^2.0.1
- phpunit/phpunit: ^10.4.2
- rector/rector: ^2.0.3
README
A simple helper to decode and encode JSON, including from files.
Usage
use Beste\Json; use UnexpectedValueException; $object = Json::decode('{"key": "value"}'); $array = Json::decode('{"key": "value"}', $forceArray = true); $object = Json::decodeFile('/path/to/file.json'); $json = Json::encode($object); $prettyJson = Json::pretty($object); // When something goes wring while decoding/encoding, // an `UnexpectedValueException` is thrown try { Json::decode('{]'); } catch (UnexpectedValueException $e) { // Handle error }
Installation
composer require beste/json
Running tests
composer test