-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
89 lines (89 loc) · 2.26 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
{
"name": "wsdltophp/packagebase",
"description": "Contains the base classes to be used by classes generated by wsdltophp/packagegenerator",
"type": "library",
"keywords" : ["php","models"],
"homepage" : "https://github.com/WsdlToPhp/PackageBase",
"license" : "MIT",
"authors" : [
{
"name": "Mikaël DELSOL",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Luke Rodgers",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Arthur Moore",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Necati Yared Ozal",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Gemorroj",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "hordijk",
"role": "Contributor"
},
{
"name": "Jacob Dreesen",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Karl Pierce",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "maurobn",
"role": "Contributor"
},
{
"name": "Christo Yovev",
"role": "Contributor"
}
],
"support" : {
"email" : "[email protected]"
},
"require": {
"php" : ">=7.4",
"ext-soap": "*",
"ext-dom": "*",
"ext-json": "*"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/php-cs-fixer fix --ansi --diff --verbose",
"phpstan": "vendor/bin/phpstan analyze src --level=5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"WsdlToPhp\\PackageBase\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WsdlToPhp\\PackageBase\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}