This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
82 lines (69 loc) · 2.24 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
81
82
{
"name" : "ipub/flysystem",
"type" : "library",
"description" : "Flysystem integration for Nette Framework.",
"keywords" : ["nette", "flysystem", "filesystem", "tools", "ipub", "ipublikuj"],
"homepage" : "https://github.com/iPublikuj/flysystem",
"license" : ["GPL-2.0", "GPL-3.0"],
"authors": [
{
"name" : "iPublikuj:cms",
"email" : "[email protected]",
"homepage" : "https://www.ipublikuj.eu/"
}
],
"support": {
"email" :"[email protected]",
"issues" :"https://github.com/iPublikuj/flysystem/issues"
},
"extra": {
"ipub" : {
"configuration" : {
"extensions" : {
"flysystem" : "IPub\\Flysystem\\DI\\FlysystemExtension"
}
}
}
},
"require": {
"php" : ">=7.1.0",
"nette/di" : "^2.4.10 || ~3.0",
"nette/utils" : "^2.4.9 || ~3.0",
"league/flysystem" : "^1.0.52"
},
"require-dev": {
"nette/bootstrap" : "~2.4 || ~3.0",
"nette/mail" : "~2.4 || ~3.0",
"nette/robot-loader" : "~2.4 || ~3.0",
"nette/safe-stream" : "~2.3",
"nette/tester" : "~2.0",
"tracy/tracy" : "~2.4",
"pds/skeleton" : "~1.0",
"league/flysystem-cached-adapter" : "~1.0",
"league/flysystem-aws-s3-v3" : "~1.0",
"league/flysystem-azure" : "~1.0",
"league/flysystem-dropbox" : "~1.0",
"league/flysystem-gridfs" : "~1.0",
"league/flysystem-rackspace" : "~1.0",
"league/flysystem-sftp" : "~1.0",
"league/flysystem-webdav" : "~1.0",
"league/flysystem-ziparchive" : "~1.0"
},
"suggest": {
"ext-fileinfo" : "Required for MimeType",
"league/flysystem-cached-adapter" : "Flysystem adapter decorator for metadata caching",
"league/flysystem-aws-s3-v3" : "Allows you to use Amazon S3 storage with AWS SDK v3",
"league/flysystem-azure" : "Allows you to use Microsoft Azure storage",
"league/flysystem-dropbox" : "Allows you to use Dropbox storage",
"league/flysystem-gridfs" : "Allows you to use GridFS adapter",
"league/flysystem-rackspace" : "Allows you to use Rackspace Cloud Files",
"league/flysystem-sftp" : "Allows SFTP server storage via phpseclib",
"league/flysystem-webdav" : "Allows you to use WebDAV storage",
"league/flysystem-ziparchive" : "Allows you to use ZipArchive adapter"
},
"autoload": {
"psr-0": {
"IPub\\Flysystem\\": "src/"
}
}
}