├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Exception ├── Exception.php ├── FileCanNotBeRead.php ├── FileDoesNotContainJson.php ├── FileDoesNotExist.php └── NotJson.php └── Json.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/composer.json -------------------------------------------------------------------------------- /src/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/src/Exception/Exception.php -------------------------------------------------------------------------------- /src/Exception/FileCanNotBeRead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/src/Exception/FileCanNotBeRead.php -------------------------------------------------------------------------------- /src/Exception/FileDoesNotContainJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/src/Exception/FileDoesNotContainJson.php -------------------------------------------------------------------------------- /src/Exception/FileDoesNotExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/src/Exception/FileDoesNotExist.php -------------------------------------------------------------------------------- /src/Exception/NotJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/src/Exception/NotJson.php -------------------------------------------------------------------------------- /src/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ergebnis/json/HEAD/src/Json.php --------------------------------------------------------------------------------