Skip to content

Commit 3b26ae3

Browse files
committed
Added better readme
1 parent e946f71 commit 3b26ae3

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

README

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
TidyJSON
2+
--------
3+
4+
A simple class for cleaning up poorly formatted JSON strings. No validation is performed; if you pass in bogus data, you will get bogus output.
5+
6+
Usage:
7+
<?php
8+
9+
require 'tidyjson.php';
10+
11+
$json = '{"foo":"bar","baz":[1,2,5]}';
12+
$tidy = TidyJSON::tidy($json);
13+
14+
?>

0 commit comments

Comments
 (0)