├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── run-tests.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── VERSION ├── composer.json ├── phpunit.xml.dist ├── readme.md ├── src ├── Fixer.php └── PadsJson.php └── tests ├── FixerTest.php └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: adhocore 2 | custom: ['https://paypal.me/ji10'] 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/LICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.0.0 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/readme.md -------------------------------------------------------------------------------- /src/Fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/src/Fixer.php -------------------------------------------------------------------------------- /src/PadsJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/src/PadsJson.php -------------------------------------------------------------------------------- /tests/FixerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/tests/FixerTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-json-fixer/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------