├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── src └── JsonSerializer.php └── test ├── fixtures.php └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindplay-dk/jsonfreeze/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindplay-dk/jsonfreeze/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindplay-dk/jsonfreeze/HEAD/composer.json -------------------------------------------------------------------------------- /src/JsonSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindplay-dk/jsonfreeze/HEAD/src/JsonSerializer.php -------------------------------------------------------------------------------- /test/fixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindplay-dk/jsonfreeze/HEAD/test/fixtures.php -------------------------------------------------------------------------------- /test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindplay-dk/jsonfreeze/HEAD/test/test.php --------------------------------------------------------------------------------