m-comscience / yii2-soap-client
SOAP Client Extension for Yii 2
Installs: 56
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- ext-soap: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-03-29 00:36:33 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
composer require m-comscience/yii2-soap-client "@dev"
or add
"m-comscience/yii2-soap-client": "@dev"
to the require
section of your composer.json
file.
Usage
You need to setup soap client application component:
'components' => [ 'soapClient' => [ 'class' => 'mcomscience\soapclient\Client', 'url' => 'http://myservice.com/api', 'options' => [ 'cache_wsdl' => WSDL_CACHE_NONE, ], ] ... ]
or define the client directly in the code:
$client = new \mcomscience\soapclient\Client([ 'url' => 'http://myservice.com/api', ]);
Example of calling the SOAP function:
$client = Yii::$app->soapClient; echo $client->getFunction();