This repository has been archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
62 lines (62 loc) · 1.59 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
{
"name": "mjrider/flysystem-factory",
"abandoned": true,
"type": "library",
"description": "Simple factory library to create a flysystem instance from a url",
"keywords": [
"flysystem",
"filesystem",
"filesystems",
"files",
"storage",
"factory"
],
"homepage": "https://github.com/mjrider/flysystem-factory",
"license": "MIT",
"authors": [
{
"name": "Robbert Müller",
"role": "Developer"
}
],
"require": {
"php": "~7.4 | ^8.0",
"arc/web": "^1.1 || ^2.1 || ^3.0",
"league/flysystem": "^1.0",
"league/flysystem-cached-adapter": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.7.2",
"league/flysystem-aws-s3-v3": "1.0.29",
"league/flysystem-rackspace": "1.0.5",
"mhetreramesh/flysystem-backblaze": "1.1.4",
"nimbusoft/flysystem-openstack-swift": "0.4.1",
"phpcompatibility/php-compatibility": "9.3.5",
"phpunit/phpunit": " 9.5.19",
"predis/predis": "1.1.10"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"MJRider\\FlysystemFactory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MJRider\\FlysystemFactory\\": "tests/"
}
},
"suggest": {
"ext-memcached": "memcached cache support",
"ext-phpredis": "phpredis cache support",
"league/flysystem-aws-s3-v3": "For S3 support",
"mhetreramesh/flysystem-backblaze": "For Backblaze support",
"predis/predis": "predis cache support",
"nimbusoft/flysystem-openstack-swift": "For openstack support"
},
"config": {
"sort-packages": true
}
}