├── .gitignore ├── .travis.yml ├── composer.json ├── example0_intro.php ├── example1_create.php ├── license.md ├── phpunit.xml ├── readme.md ├── src └── Json.php └── tests ├── MainTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/composer.json -------------------------------------------------------------------------------- /example0_intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/example0_intro.php -------------------------------------------------------------------------------- /example1_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/example1_create.php -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/readme.md -------------------------------------------------------------------------------- /src/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/src/Json.php -------------------------------------------------------------------------------- /tests/MainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/tests/MainTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yadakhov/json/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------