├── .bumpversion.cfg ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json └── workflows │ ├── ci-8.0.yml │ ├── ci-8.1.yml │ └── ci-8.2.yml ├── .phplint.yml ├── .scrutinizer.yml ├── .styleci.yml ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── composer.json ├── composer.lock ├── example ├── asynchronous_crcind.php ├── asynchronous_heroku.php └── test_curl.php ├── phpcs.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist └── src └── ParallelSoapClient.php /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci-8.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/workflows/ci-8.0.yml -------------------------------------------------------------------------------- /.github/workflows/ci-8.1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/workflows/ci-8.1.yml -------------------------------------------------------------------------------- /.github/workflows/ci-8.2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.github/workflows/ci-8.2.yml -------------------------------------------------------------------------------- /.phplint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.phplint.yml -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/composer.lock -------------------------------------------------------------------------------- /example/asynchronous_crcind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/example/asynchronous_crcind.php -------------------------------------------------------------------------------- /example/asynchronous_heroku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/example/asynchronous_heroku.php -------------------------------------------------------------------------------- /example/test_curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/example/test_curl.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ParallelSoapClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabed/php-parallel-soap/HEAD/src/ParallelSoapClient.php --------------------------------------------------------------------------------