-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathcomposer.json
149 lines (149 loc) · 3.99 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"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"
},
{
"name": "Clifford Vickrey",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Arnaud POINTET",
"role": "Contributor"
},
{
"name": "dypa",
"role": "Contributor"
},
{
"name": "gugglegum",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "tbreuss",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Alex Krátký",
"role": "Contributor"
}
],
"support" : {
"email" : "[email protected]"
},
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-soap": "*",
"composer/composer": "^2.0",
"symfony/console": "^4.0|^5.0|^6.0|^7.0",
"symfony/yaml": "^4.0|^5.0|^6.0|^7.0",
"wsdltophp/packagebase": "^5.0",
"wsdltophp/phpgenerator": "^4.0",
"wsdltophp/wsdlhandler": "^1.0"
},
"scripts": {
"test": "php-7.4 vendor/bin/phpunit",
"lint": "php-7.4 vendor/bin/php-cs-fixer fix --ansi --diff --verbose",
"build": "php-7.4 box build --verbose",
"phpstan": "php-7.4 vendor/bin/phpstan analyze src --level=2",
"rector": "php-7.4 vendor/bin/rector process"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9",
"rector/rector": "^0.15.17"
},
"autoload": {
"psr-4": {
"WsdlToPhp\\PackageGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WsdlToPhp\\PackageGenerator\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}