-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "shopsys/s3-bridge",
"type": "library",
"description": "Integration of AWS S3 into Shopsys Platform",
"keywords": ["S3", "AWS", "Shopsys Platform", "SSFW"],
"license": "proprietary",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\S3Bridge\\": "src/"
}
},
"require": {
"php": "^8.3",
"aws/aws-sdk-php": "^3.220.0",
"league/flysystem": "^3.11",
"league/flysystem-aws-s3-v3": "^3.12.2",
"shopsys/form-types-bundle": "16.0.x-dev",
"shopsys/framework": "16.0.x-dev",
"shopsys/migrations": "16.0.x-dev",
"shopsys/plugin-interface": "16.0.x-dev",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"phpstan/phpstan": "^1.11.7"
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}