├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── bootstrap.php ├── composer.json ├── duster.json ├── helpers.php ├── phpstan-baseline.neon ├── phpstan.neon ├── pint.json └── src ├── Exceptions └── LazyJsonException.php ├── LazyJson.php └── Pointers └── DotsConverter.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/composer.json -------------------------------------------------------------------------------- /duster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/duster.json -------------------------------------------------------------------------------- /helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/helpers.php -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/phpstan.neon -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/pint.json -------------------------------------------------------------------------------- /src/Exceptions/LazyJsonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/src/Exceptions/LazyJsonException.php -------------------------------------------------------------------------------- /src/LazyJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/src/LazyJson.php -------------------------------------------------------------------------------- /src/Pointers/DotsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cerbero90/lazy-json/HEAD/src/Pointers/DotsConverter.php --------------------------------------------------------------------------------