-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
46 lines (46 loc) · 1.12 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "mongosoft/yii2-soap-server",
"description": "SOAP Server Extension for Yii 2",
"keywords": [
"yii2",
"extension",
"soap",
"wsdl",
"server"
],
"homepage": "https://github.com/mongosoft/yii2-soap-server",
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/mongosoft/yii2-soap-server/issues?state=open",
"source": "https://github.com/mongosoft/yii2-soap-server"
},
"authors": [
{
"name": "Alexander Mohorev",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-soap": "*",
"yiisoft/yii2": "^2.0.35",
"php2wsdl/php2wsdl": "*"
},
"require-dev": {
"yidas/yii2-bower-asset": "*",
"codeception/codeception": "*",
"codeception/module-asserts": "*",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"mongosoft\\soapserver\\": ""
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}