├── composer.json ├── config └── xml.php ├── license.txt ├── readme.md └── src ├── Http ├── Middleware │ └── RequireXml.php └── XmlResponse.php ├── LaravelXml.php ├── LaravelXmlServiceProvider.php └── Support ├── ArrayToXml.php ├── Facades └── LaravelXml.php ├── JsonSimpleXMLElementDecorator.php ├── XmlElement.php ├── XmlValidator.php └── helpers.php /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/composer.json -------------------------------------------------------------------------------- /config/xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/config/xml.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/readme.md -------------------------------------------------------------------------------- /src/Http/Middleware/RequireXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Http/Middleware/RequireXml.php -------------------------------------------------------------------------------- /src/Http/XmlResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Http/XmlResponse.php -------------------------------------------------------------------------------- /src/LaravelXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/LaravelXml.php -------------------------------------------------------------------------------- /src/LaravelXmlServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/LaravelXmlServiceProvider.php -------------------------------------------------------------------------------- /src/Support/ArrayToXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Support/ArrayToXml.php -------------------------------------------------------------------------------- /src/Support/Facades/LaravelXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Support/Facades/LaravelXml.php -------------------------------------------------------------------------------- /src/Support/JsonSimpleXMLElementDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Support/JsonSimpleXMLElementDecorator.php -------------------------------------------------------------------------------- /src/Support/XmlElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Support/XmlElement.php -------------------------------------------------------------------------------- /src/Support/XmlValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Support/XmlValidator.php -------------------------------------------------------------------------------- /src/Support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvbrianking/laravel-xml/HEAD/src/Support/helpers.php --------------------------------------------------------------------------------