gitextract_95jpnp3a/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ ├── pr-labeler.yml │ ├── release-drafter.yml │ ├── stale.yml │ └── workflows/ │ ├── dependabot-auto-merge.yml │ ├── mkdocs.yml │ ├── php-cs-fixer.yml │ ├── phpstan.yml │ ├── pr-labeler.yml │ ├── releaseDrafter.yml │ └── tests.yml ├── .gitignore ├── .mailmap ├── .php_cs.dist.php ├── .styleci.yml ├── LICENSE ├── README.md ├── composer.json ├── config/ │ └── soap.php ├── mkdocs.yml ├── 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 └── tests/ ├── Fixtures/ │ ├── CustomSoapClient.php │ ├── Responses/ │ │ └── SoapFault.xml │ └── Wsdl/ │ └── weather.wsdl ├── TestCase.php └── Unit/ ├── Client/ │ └── ResponseTest.php ├── Commands/ │ ├── MakeClientCommandTest.php │ └── MakeValidationCommandTest.php ├── Middleware/ │ └── CisDhlMiddlewareTest.php ├── SoapClientTest.php └── Xml/ └── XmlSerializerTest.php