-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.22 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
{
"name": "innmind/s3",
"type": "library",
"description": "Manipulate a S3 bucket",
"keywords": ["aws", "s3", "bucket"],
"homepage": "http://github.com/Innmind/S3",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/Innmind/S3/issues"
},
"require": {
"php": "~8.2",
"innmind/url": "~4.1",
"innmind/immutable": "~4.15|~5.0",
"innmind/http": "~7.0",
"innmind/filesystem": "~7.5",
"innmind/http-transport": "~7.0",
"innmind/time-continuum": "~3.1",
"innmind/hash": "^1.1",
"innmind/xml": "^7.2",
"innmind/operating-system": "~4.0|~5.0"
},
"autoload": {
"psr-4": {
"Innmind\\S3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Innmind\\S3\\": "tests/"
}
},
"require-dev": {
"vimeo/psalm": "~5.15",
"innmind/black-box": "~5.5",
"innmind/coding-standard": "~2.0",
"symfony/filesystem": "~6.2",
"symfony/process": "~6.2",
"symfony/dotenv": "^7.0"
}
}