├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Exceptions │ └── CouldNotParseXml.php ├── Middleware │ └── XmlRequest.php └── Providers │ └── RequestXmlServiceProvider.php └── tests └── RequestXmlTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/CouldNotParseXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/src/Exceptions/CouldNotParseXml.php -------------------------------------------------------------------------------- /src/Middleware/XmlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/src/Middleware/XmlRequest.php -------------------------------------------------------------------------------- /src/Providers/RequestXmlServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/src/Providers/RequestXmlServiceProvider.php -------------------------------------------------------------------------------- /tests/RequestXmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/request-xml/HEAD/tests/RequestXmlTest.php --------------------------------------------------------------------------------