-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
69 lines (69 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name" : "wsdltophp/wssecurity",
"description" : "Allows to easily add Ws Security header to a SOAP Request",
"type" : "library",
"keywords" : ["soap","php","wsse"],
"license" : "MIT",
"authors" : [
{
"name": "Mikaël DELSOL",
"email": "[email protected]",
"homepage": "https://www.wsdltophp.com",
"role": "Owner"
},
{
"name": "Alexey Anisimov",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Tom Vaughan",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "NtlBldrv",
"role": "Contributor"
},
{
"name": "baijunyao",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "liquid207",
"role": "Contributor"
}
],
"support" : {
"email" : "[email protected]"
},
"require" : {
"php": ">=7.4",
"ext-dom": "*",
"ext-soap": "*"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/php-cs-fixer fix --ansi --diff --verbose",
"phpstan": "vendor/bin/phpstan analyze src --level=6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9"
},
"autoload" : {
"psr-4" : {
"WsdlToPhp\\WsSecurity\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"WsdlToPhp\\WsSecurity\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}