├── .github └── workflows │ └── run-tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── XmlToArray.php ├── XmlToArrayConfig.php ├── XmlToArrayConverter.php └── XmlToArrayException.php └── tests ├── XmlToArrayConfigTest.php ├── XmlToArrayConverterTest.php └── XmlToArrayTest.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .idea 3 | .phpunit.result.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/XmlToArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/src/XmlToArray.php -------------------------------------------------------------------------------- /src/XmlToArrayConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/src/XmlToArrayConfig.php -------------------------------------------------------------------------------- /src/XmlToArrayConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/src/XmlToArrayConverter.php -------------------------------------------------------------------------------- /src/XmlToArrayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/src/XmlToArrayException.php -------------------------------------------------------------------------------- /tests/XmlToArrayConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/tests/XmlToArrayConfigTest.php -------------------------------------------------------------------------------- /tests/XmlToArrayConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/tests/XmlToArrayConverterTest.php -------------------------------------------------------------------------------- /tests/XmlToArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearstream/xml-to-array/HEAD/tests/XmlToArrayTest.php --------------------------------------------------------------------------------