-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
76 lines (76 loc) · 2.04 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
{
"name": "codedredd/laravel-soap",
"description": "A SoapClient wrapper integration for Laravel",
"keywords": [
"laravel",
"soap",
"client",
"wrapper"
],
"license": "MIT",
"authors": [
{
"name": "Gregor Becker",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"ext-soap": "*",
"ext-bcmath": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"illuminate/http": "^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"phpro/soap-client": "^2.3.0 || ^3.1.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/discovery": "^1.14",
"php-http/message": "^1.13",
"php-http/client-common": "^2.6",
"robrichards/wse-php": "^2.0",
"php-soap/psr18-transport": "^1.3",
"php-soap/psr18-wsse-middleware": "^2.1",
"veewee/xml": "^2.6",
"spatie/laravel-package-tools": "^1.14",
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"symfony/options-resolver": "^6.2.5",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0 || ^9.0",
"laminas/laminas-code": "^4.8.0",
"nunomaduro/collision": "^6.1",
"symplify/easy-ci": "^10.0",
"spatie/laravel-ray": "^1.32",
"larastan/larastan": "^2.9"
},
"autoload": {
"psr-4": {
"CodeDredd\\Soap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeDredd\\Soap\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CodeDredd\\Soap\\SoapServiceProvider"
],
"aliases": {
"SOAP": "SoapFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}