-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 920 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 920 Bytes
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
{
"name": "php-soap/cached-engine",
"description": "A cache decorator for php-soap/engine",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Soap\\CachedEngine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoapTest\\CachedEngine\\": "tests/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "toonverwerft@gmail.com"
}
],
"require": {
"php": "~8.4.0 || ~8.5.0",
"php-soap/engine": "^2.20.0",
"psr/cache": "^3.0",
"psr/cache-implementation": "^3.0",
"php-standard-library/foundation": "^6.1",
"php-standard-library/type": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "~12.3",
"vimeo/psalm": "~6.16.0",
"php-cs-fixer/shim": "~3.94.0",
"symfony/cache": "^7.0 || ^6.4"
}
}