-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "php-soap/psr18-attachments-middleware",
"description": "Add SWA / MTOM attachments to your SOAP client",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Soap\\Psr18AttachmentsMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoapTest\\Psr18AttachmentsMiddleware\\": "tests/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "toonverwerft@gmail.com"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"phpro/resource-stream": "^1.0",
"php-http/multipart-stream-builder": "^1.4",
"riverline/multipart-parser": "^2.1",
"php-soap/psr18-transport": "^1.7",
"symfony/http-client": "^7.2",
"azjezz/psl": "^3.1"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"php-soap/encoding": "~0.16.0",
"vimeo/psalm": "^5.26",
"php-standard-library/psalm-plugin": "^2.3",
"phpunit/phpunit": "^10.5.40",
"php-http/mock-client": "^1.6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}