├── .github └── workflows │ └── build.yml ├── .gitignore ├── Action.php ├── Exception.php ├── README.md ├── Service.php ├── codeception.yml ├── composer.json ├── docs ├── CONTRIBUTING.md └── LICENSE.md └── tests ├── Support ├── Data │ └── .gitkeep ├── UnitTester.php └── _generated │ └── .gitignore ├── Unit.suite.yml ├── Unit ├── Controller.php ├── ServiceTest.php └── _bootstrap.php ├── Yii2_config └── test.php └── _output └── .gitignore /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/Action.php -------------------------------------------------------------------------------- /Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/Exception.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/README.md -------------------------------------------------------------------------------- /Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/Service.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/composer.json -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /tests/Support/Data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/tests/Support/UnitTester.php -------------------------------------------------------------------------------- /tests/Support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/tests/Unit.suite.yml -------------------------------------------------------------------------------- /tests/Unit/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/tests/Unit/Controller.php -------------------------------------------------------------------------------- /tests/Unit/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/tests/Unit/ServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/tests/Unit/_bootstrap.php -------------------------------------------------------------------------------- /tests/Yii2_config/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohorev/yii2-soap-server/HEAD/tests/Yii2_config/test.php -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | --------------------------------------------------------------------------------