├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Providers │ └── CollectionXmlServiceProvider.php ├── Soap │ └── SoapFactory.php └── helpers.php └── tests └── CollectionXmlTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Providers/CollectionXmlServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/src/Providers/CollectionXmlServiceProvider.php -------------------------------------------------------------------------------- /src/Soap/SoapFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/src/Soap/SoapFactory.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/CollectionXmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtownsend5512/collection-xml/HEAD/tests/CollectionXmlTest.php --------------------------------------------------------------------------------