├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Exceptions │ ├── ClientClassNotFoundException.php │ ├── CurtainNotSetupException.php │ └── CurtainRequiresWsdlException.php ├── SoapyBaseClient.php ├── SoapyClient.php ├── SoapyCurtain.php ├── SoapyFacade.php ├── SoapyServiceProvider.php └── SoapyTub.php └── tests ├── BaseTestCase.php ├── TestSoapyClient.php ├── Unit └── CustomClassTest.php └── example.wsdl /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/ClientClassNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/Exceptions/ClientClassNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/CurtainNotSetupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/Exceptions/CurtainNotSetupException.php -------------------------------------------------------------------------------- /src/Exceptions/CurtainRequiresWsdlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/Exceptions/CurtainRequiresWsdlException.php -------------------------------------------------------------------------------- /src/SoapyBaseClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/SoapyBaseClient.php -------------------------------------------------------------------------------- /src/SoapyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/SoapyClient.php -------------------------------------------------------------------------------- /src/SoapyCurtain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/SoapyCurtain.php -------------------------------------------------------------------------------- /src/SoapyFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/SoapyFacade.php -------------------------------------------------------------------------------- /src/SoapyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/SoapyServiceProvider.php -------------------------------------------------------------------------------- /src/SoapyTub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/src/SoapyTub.php -------------------------------------------------------------------------------- /tests/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/tests/BaseTestCase.php -------------------------------------------------------------------------------- /tests/TestSoapyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/tests/TestSoapyClient.php -------------------------------------------------------------------------------- /tests/Unit/CustomClassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/tests/Unit/CustomClassTest.php -------------------------------------------------------------------------------- /tests/example.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcetoad/Soapy/HEAD/tests/example.wsdl --------------------------------------------------------------------------------