forked from WsdlToPhp/PackageGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
118 lines (118 loc) · 3.1 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "wsdltophp/packagegenerator",
"description": "Generate hierarchical PHP classes based on a WSDL",
"type": "library",
"keywords" : ["soap","wsdl","php","generator"],
"homepage" : "https://github.com/WsdlToPhp/PackageGenerator",
"license" : "MIT",
"authors" : [
{
"name": "Mikaël DELSOL",
"email": "[email protected]",
"homepage": "https://www.wsdltophp.com",
"role": "Owner"
},
{
"name": "Gemorroj",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "ceeram",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "GroxExMachine",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Jan Zaeske",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Tom Mottram",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Catirau Mihail",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Alexander M. Turek",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Valérian Girard",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "hordijk",
"role": "Contributor"
},
{
"name": "Andreas Möller",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Andreas Kintzinger",
"role": "Contributor"
},
{
"name": "Hendrik Luup",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Jacob Dreesen",
"email": "[email protected]",
"role": "Contributor"
}
],
"support" : {
"email" : "[email protected]"
},
"require": {
"php": ">=7.4",
"ext-soap": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*",
"ext-mbstring": "*",
"composer/composer": "^2.0",
"symfony/console": "^4.0|^5.0",
"symfony/yaml": "^4.0|^5.0",
"wsdltophp/packagebase": "^5.0",
"wsdltophp/phpgenerator": "^4.0",
"wsdltophp/wsdlhandler": "^1.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/php-cs-fixer fix --ansi --diff --verbose",
"build": "box build --verbose"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"WsdlToPhp\\PackageGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WsdlToPhp\\PackageGenerator\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}