forked from 1up-lab/OneupFlysystemBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
80 lines (80 loc) · 2.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "oneup/flysystem-bundle",
"type": "symfony-bundle",
"description": "Integrates Flysystem filesystem abstraction library to your Symfony project.",
"keywords": [
"symfony",
"flysystem",
"filesystem",
"abstraction"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "Jim Schmid",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
},
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"league/flysystem": "^2.0",
"symfony/config": "^4.4|^5.3|^6.0",
"symfony/dependency-injection": "^4.4|^5.3|^6.0",
"symfony/http-kernel": "^4.4|^5.3|^6.0"
},
"require-dev": {
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "^2.16",
"league/flysystem-async-aws-s3": "^2.0",
"league/flysystem-aws-s3-v3": "^2.0",
"league/flysystem-ftp": "^2.0",
"league/flysystem-google-cloud-storage": "^2.0",
"league/flysystem-memory": "^2.0",
"league/flysystem-sftp": "^2.0",
"phpstan/phpstan": "^0.12.10",
"phpunit/phpunit": "^9.5",
"royvoetman/flysystem-gitlab-storage": "^2.0",
"symfony/asset": "^4.4|^5.3|^6.0",
"symfony/browser-kit": "^4.4|^5.3|^6.0",
"symfony/finder": "^4.4|^5.3|^6.0",
"symfony/framework-bundle": "^4.4|^5.3|^6.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/templating": "^4.4|^5.3|^6.0",
"symfony/translation": "^4.4|^5.3|^6.0",
"symfony/yaml": "^4.4|^5.3|^6.0"
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
"ext-ftp": "Required for FTP and SFTP",
"league/flysystem-async-aws-s3": "Use flysystem S3 adapter from AsyncAws",
"league/flysystem-aws-s3-v3": "Use S3 storage with AWS SDK v3",
"league/flysystem-google-cloud-storage": "Use Google Cloud Storage Adapter for Flysystem",
"league/flysystem-sftp": "Allows SFTP server storage via phpseclib",
"royvoetman/flysystem-gitlab-storage": "Use Gitlab Storage filesystem for Flysystem"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Oneup\\FlysystemBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oneup\\FlysystemBundle\\Tests\\": "tests"
},
"classmap": [
"tests/App/Kernel.php"
]
}
}