Skip to content

guanguans/json-format

Repository files navigation

json-format

Format json string.

Build Status Build Status Scrutinizer Code Quality codecov StyleCI Total Downloads Latest Stable Version License

Requirements

  • PHP > 5.4
  • ext-json

Installing

$ composer require guanguans/json-format -v

Usage

Code

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

$json = <<<'JSON'
{"name":"json-format","keywords":["json","format","pretty"],"description":"Format json string."}
JSON;

echo json_format($json);

Output

{
    "name": "json-format",
    "keywords": [
        "json",
        "format",
        "pretty"
    ],
    "description": "Format json string."
}

Testing

$ composer test

License

MIT