forked from thephpleague/flysystem-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.58 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.58 KB
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
{
"name": "league/flysystem-bundle",
"description": "Symfony bundle integrating Flysystem into Symfony 4.2+ applications",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Titouan Galopin",
"email": "galopintitouan@gmail.com"
}
],
"autoload": {
"psr-4": {
"League\\FlysystemBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\League\\FlysystemBundle\\": "tests"
}
},
"require": {
"php": ">=7.1",
"league/flysystem": "^1.0.40",
"symfony/framework-bundle": "^4.2",
"symfony/options-resolver": "^4.2"
},
"require-dev": {
"league/flysystem-aws-s3-v3": "^1.0.22",
"league/flysystem-azure-blob-storage": "^0.1.5",
"league/flysystem-cached-adapter": "^1.0.9",
"league/flysystem-memory": "^1.0",
"league/flysystem-rackspace": "^1.0",
"league/flysystem-replicate-adapter": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-webdav": "^1.0",
"league/flysystem-ziparchive": "^1.0",
"phpunit/phpunit": "^7.4",
"spatie/flysystem-dropbox": "^1.0",
"superbalist/flysystem-google-storage": "^7.2",
"symfony/var-dumper": "^4.1",
"symfony/yaml": "^4.2"
},
"conflict": {
"league/flysystem-aws-s3-v3": "<1.0.22",
"league/flysystem-cached-adapter": "<1.0.9"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}