uhi67 / yii2-soap-server
Yii2 soap wsdl web services
Installs: 59
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 6
Type:yii2-extension
Requires
- php: >=7.1
- ext-dom: *
- ext-soap: *
- ext-xml: *
- yiisoft/yii2: >=2.0.13
Requires (Dev)
- ext-simplexml: *
- codeception/codeception: ^4.1
- codeception/module-asserts: ^1.3
- codeception/module-phpbrowser: ^1.0
- codeception/module-rest: ^1.3
- codeception/module-yii2: ^1.1
- guzzlehttp/guzzle: >=4.1.4 <7.0
- uhi67/codeception-module-soap: ^1.1
- uhi67/codeception-module-xmlasserts: ^1.0
- uhi67/soaphelper: ^1.0
- yiisoft/yii2-debug: ~2.0.0
- yiisoft/yii2-faker: ~2.0.0
This package is auto-updated.
Last update: 2025-03-29 01:11:06 UTC
README
Version 1.5
Description
WebService encapsulates SoapServer and provides a WSDL-based web service. Adaptation of Yii1 Web Services
Based on work of Qiang Xue qiang.xue@gmail.com and Andrey Borodulin
Change log is below
Installation
The preferred way to install this extension is through composer.
To install, either run
$ php composer.phar require uhi67/yii2-soap-server "^1.5"
or add
"uhi67/yii2-soap-server": "^1.5"
to the require
section of your composer.json
file.
Usage
namespace app\controllers; class SiteController extends \yii\web\Controller { public function actions() { return [ 'soap' => [ 'class' => 'conquer\services\WebServiceAction', 'classMap' => [ 'MyClass' => 'app\controllers\MyClass' ], ], ]; } /** * @param \app\controllers\MyClass $myClass * @return string * @soap */ public function soapTest($myClass) { return get_class($myClass); } } /** * Class MyClass * @soap */ class MyClass { /** * @var string * @soap */ public $name; }
Testing
- Before testing, run once
composer install
from repository root. - Run
php tests/app/yii serve
if you're going to run acceptance tests. - Run
codecept run
from repository root.
License
uhi67/yii2-soap-server is released under the BSD License. See the bundled LICENSE.md
for details.
Change log
1.5
- corrections for codeception functional testing and some test examples
- online API documentation with
?doc
query