-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 1.83 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
83
84
{
"name": "moderntribe/tribe-storage",
"description": "A WordPress plugin to upload files to many different storage types like Azure, s3, DO Spaces",
"type": "wordpress-plugin",
"keywords": [
"moderntribe",
"offload",
"media",
"flysystem",
"cloud-storage",
"azure",
"s3",
"aws",
"google-cloud-storage",
"digital-oceans-spaces",
"rackspace",
"wasabi",
"wordpress"
],
"authors": [
{
"name": "Justin Frydman",
"role": "Developer"
},
{
"name": "Modern Tribe",
"email": "[email protected]",
"homepage": "https://tri.be"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:moderntribe/flysystem-stream-wrapper.git"
}
],
"require": {
"php": ">=7.4",
"php-di/php-di": "^6.0",
"league/flysystem-azure-blob-storage": "^1.0",
"league/flysystem-cached-adapter": "^1.1",
"intervention/image": "^2.5",
"symfony/lock": "^5.2",
"jhofm/flysystem-iterator": "^2.2",
"moderntribe/flysystem-stream-wrapper": "^2.0"
},
"require-dev": {
"ext-exif": "*",
"brain/monkey": "2.*",
"moderntribe/coding-standards": "^2.0",
"nunomaduro/collision": "^5.10",
"php-mock/php-mock-mockery": "^1.3",
"phpunit/phpunit": "^9",
"wp-cli/wp-cli-bundle": "^2.4"
},
"autoload": {
"psr-4": {
"Tribe\\Storage\\": "src"
},
"files": [
"plugin-loader.php"
]
},
"autoload-dev": {
"psr-4": {
"Tribe\\Storage\\Tests\\": "tests"
},
"files": [
"tests/Bootstrap.php"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}