forked from wsdl2phpgenerator/wsdl2phpgenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.48 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
{
"name": "wsdl2phpgenerator/wsdl2phpgenerator",
"description": "Simple class library for generating php classes from a wsdl file.",
"keywords": ["soap", "wsdl"],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Wsdl2PhpGenerator\\": ["src/", "lib/"]
}
},
"autoload-dev": {
"psr-4": {
"Wsdl2PhpGenerator\\Tests\\": ["tests/src"]
},
"classmap": [
"tests/generated/"
]
},
"require": {
"php": "^7.2",
"ext-soap": "*",
"symfony/options-resolver": "^3.4 || ^4.3 || ^5.0",
"symfony/polyfill-iconv": "^1.13.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"kasperg/phing-github": "0.2.*",
"phing/phing": "^2.16.3",
"php-vcr/php-vcr": "^1.4.4",
"php-vcr/phpunit-testlistener-vcr": "^3.2.1",
"phpstan/phpstan": "^0.12.9",
"phpunit/phpunit": "^8.5",
"psr/log": "^1.1.2",
"symfony/yaml": "^2.8.52"
},
"scripts": {
"test": [
"phpunit"
],
"fix": [
"php-cs-fixer fix"
],
"analyse": [
"phpstan analyse src/ tests/src/ --memory-limit=512M --level 7 --configuration phpstan.neon"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.5.x-dev"
}
}
}