├── .mailmap ├── .php_cs.dist.php ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config └── soap.php ├── docs ├── client │ ├── authentication.md │ └── response.md ├── testing.md ├── v2 │ ├── client │ │ ├── authentication.md │ │ ├── configuration.md │ │ ├── request.md │ │ └── response.md │ ├── commands.md │ ├── index.md │ └── testing.md └── v3 │ ├── docus.config.ts │ ├── nuxt.config.ts │ ├── package.json │ ├── windi.config.ts │ └── yarn.lock ├── mkdocs.yml ├── phpstan.neon └── src ├── Client ├── Events │ ├── ConnectionFailed.php │ ├── RequestSending.php │ └── ResponseReceived.php ├── Request.php ├── Response.php └── ResponseSequence.php ├── Driver └── ExtSoap │ └── ExtSoapEngineFactory.php ├── Exceptions ├── NotFoundConfigurationException.php ├── RequestException.php └── SoapException.php ├── Facades └── Soap.php ├── Faker ├── EngineFaker.php └── fake.wsdl ├── Middleware ├── CisDhlMiddleware.php └── WsseMiddleware.php ├── Ray ├── LaravelRay.php └── SoapClientWatcher.php ├── SoapClient.php ├── SoapFactory.php ├── SoapServiceProvider.php ├── SoapTesting.php └── Xml └── XMLSerializer.php /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/.mailmap -------------------------------------------------------------------------------- /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/composer.lock -------------------------------------------------------------------------------- /config/soap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/config/soap.php -------------------------------------------------------------------------------- /docs/client/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/client/authentication.md -------------------------------------------------------------------------------- /docs/client/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/client/response.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/v2/client/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/client/authentication.md -------------------------------------------------------------------------------- /docs/v2/client/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/client/configuration.md -------------------------------------------------------------------------------- /docs/v2/client/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/client/request.md -------------------------------------------------------------------------------- /docs/v2/client/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/client/response.md -------------------------------------------------------------------------------- /docs/v2/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/commands.md -------------------------------------------------------------------------------- /docs/v2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/index.md -------------------------------------------------------------------------------- /docs/v2/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v2/testing.md -------------------------------------------------------------------------------- /docs/v3/docus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v3/docus.config.ts -------------------------------------------------------------------------------- /docs/v3/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v3/nuxt.config.ts -------------------------------------------------------------------------------- /docs/v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v3/package.json -------------------------------------------------------------------------------- /docs/v3/windi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v3/windi.config.ts -------------------------------------------------------------------------------- /docs/v3/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/docs/v3/yarn.lock -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Client/Events/ConnectionFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Client/Events/ConnectionFailed.php -------------------------------------------------------------------------------- /src/Client/Events/RequestSending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Client/Events/RequestSending.php -------------------------------------------------------------------------------- /src/Client/Events/ResponseReceived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Client/Events/ResponseReceived.php -------------------------------------------------------------------------------- /src/Client/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Client/Request.php -------------------------------------------------------------------------------- /src/Client/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Client/Response.php -------------------------------------------------------------------------------- /src/Client/ResponseSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Client/ResponseSequence.php -------------------------------------------------------------------------------- /src/Driver/ExtSoap/ExtSoapEngineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Driver/ExtSoap/ExtSoapEngineFactory.php -------------------------------------------------------------------------------- /src/Exceptions/NotFoundConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Exceptions/NotFoundConfigurationException.php -------------------------------------------------------------------------------- /src/Exceptions/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Exceptions/RequestException.php -------------------------------------------------------------------------------- /src/Exceptions/SoapException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Exceptions/SoapException.php -------------------------------------------------------------------------------- /src/Facades/Soap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Facades/Soap.php -------------------------------------------------------------------------------- /src/Faker/EngineFaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Faker/EngineFaker.php -------------------------------------------------------------------------------- /src/Faker/fake.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Faker/fake.wsdl -------------------------------------------------------------------------------- /src/Middleware/CisDhlMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Middleware/CisDhlMiddleware.php -------------------------------------------------------------------------------- /src/Middleware/WsseMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Middleware/WsseMiddleware.php -------------------------------------------------------------------------------- /src/Ray/LaravelRay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Ray/LaravelRay.php -------------------------------------------------------------------------------- /src/Ray/SoapClientWatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Ray/SoapClientWatcher.php -------------------------------------------------------------------------------- /src/SoapClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/SoapClient.php -------------------------------------------------------------------------------- /src/SoapFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/SoapFactory.php -------------------------------------------------------------------------------- /src/SoapServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/SoapServiceProvider.php -------------------------------------------------------------------------------- /src/SoapTesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/SoapTesting.php -------------------------------------------------------------------------------- /src/Xml/XMLSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeDredd/laravel-soap/HEAD/src/Xml/XMLSerializer.php --------------------------------------------------------------------------------