forked from thephpleague/flysystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2.17 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
{
"name": "league/flysystem",
"description": "Many filesystems, one API.",
"keywords": [
"filesystem", "files", "storage", "dropbox", "aws",
"s3", "ftp", "sftp", "remote", "webdav", "file systems", "cloud",
"cloud files", "rackspace", "copy.com"
],
"license": "MIT",
"authors": [
{
"name": "Frank de Jonge",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"ext-fileinfo": "*",
"league/event": "~1.0",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"aws/aws-sdk-php": "~2.4",
"predis/predis": "~1.0",
"dropbox/dropbox-sdk": "~1.1.1",
"rackspace/php-opencloud": "~1.11",
"barracuda/copy": "~1.1.4",
"phpseclib/phpseclib": "~0.3.5",
"tedivm/stash": "~0.12.0",
"league/phpunit-coverage-listener" : "~1.1",
"phpspec/phpspec": "~2.0.0"
},
"autoload": {
"psr-4": {
"League\\Flysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\Flysystem\\Stub\\": "stub/"
}
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
"league/event": "Required for EventableFilesystem",
"aws/aws-sdk-php": "Allows you to use AWS S3 storage",
"predis/predis": "Allows you to use Predis for caching",
"dropbox/dropbox-sdk": "Allows you to use Dropbox storage",
"phpseclib/phpseclib": "Allows SFTP server storage",
"sabre/dav": "Enables WebDav support",
"rackspace/php-opencloud": "Allows you to use Rackspace Cloud Files",
"barracuda/copy": "Allows you to use Copy.com storage",
"guzzlehttp/guzzle": "Allows you to use http files (reading only)",
"tedivm/stash": "Allows you to use Stash as cache implementation",
"league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
"league/flysystem-webdav": "Allows you to use WebDAV storage"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}