forked from GrahamCampbell/Laravel-Flysystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.68 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
{
"name": "graham-campbell/flysystem",
"description": "Flysystem Is A Flysystem Bridge For Laravel 5",
"keywords": ["laravel", "framework", "files", "aws", "s3", "dropbox", "flysystem", "Flysystem", "Laravel Flysystem", "Laravel-Flysystem", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/cache": "5.1.*|5.2.*|5.3.*",
"illuminate/contracts": "5.1.*|5.2.*|5.3.*",
"illuminate/support": "5.1.*|5.2.*|5.3.*",
"graham-campbell/manager": "^2.3",
"league/flysystem": "^1.0"
},
"require-dev": {
"graham-campbell/testbench": "^3.1",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-azure": "^1.0",
"league/flysystem-cached-adapter": "^1.0",
"league/flysystem-copy": "^1.0",
"league/flysystem-dropbox": "^1.0",
"league/flysystem-eventable-filesystem": "^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",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.8|^5.0"
},
"suggest": {
"league/flysystem-aws-s3-v3": "AwsS3 adapter support.",
"league/flysystem-azure": "Azure adapter support.",
"league/flysystem-cached-adapter": "Adapter caching support.",
"league/flysystem-copy": "Copy adapter support.",
"league/flysystem-dropbox": "Dropbox adapter support.",
"league/flysystem-eventable-filesystem": "Eventable filesystem support.",
"league/flysystem-gridfs": "GridFS adapter support.",
"league/flysystem-rackspace": "Rackspace adapter support.",
"league/flysystem-replicate-adapter": "Replicate adapter support.",
"league/flysystem-sftp": "Sftp adapter support.",
"league/flysystem-webdav": "WebDav adapter support.",
"league/flysystem-ziparchive": "ZipArchive adapter support."
},
"autoload": {
"psr-4": {
"GrahamCampbell\\Flysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\Flysystem\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.4-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}