├── .github └── workflows │ └── main.yml ├── LICENSE.md ├── README.md ├── composer.json ├── phpstan.neon ├── src ├── Convertor.php └── Helper.php └── tests └── test.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Convertor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/src/Convertor.php -------------------------------------------------------------------------------- /src/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/src/Helper.php -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaarf/XML-string-to-PHP-array/HEAD/tests/test.sh --------------------------------------------------------------------------------