-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 902 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 902 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
37
38
39
40
41
{
"name": "async-aws/s3",
"description": "S3 client, part of the AWS SDK provided by AsyncAws.",
"license": "MIT",
"type": "library",
"keywords": [
"aws",
"amazon",
"sdk",
"async-aws",
"s3"
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-simplexml": "*",
"async-aws/core": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "^11.5.42",
"symfony/error-handler": "^7.3.2 || ^8.0",
"symfony/phpunit-bridge": "^7.3.2 || ^8.0"
},
"autoload": {
"psr-4": {
"AsyncAws\\S3\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AsyncAws\\S3\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.3-dev"
}
}
}