-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.09 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
{
"name": "mattgrayisok/craft-backblaze-b2",
"description": "Backblaze B2 integration for Craft CMS",
"version": "1.0.0",
"type": "craft-plugin",
"keywords": [
"backblaze",
"cms",
"craftcms",
"flysystem",
"b2",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Matt Gray",
"homepage": "https://mattgrayisok.com/"
}
],
"support": {
"email": "matt@mattgrayisok.com",
"issues": "https://github.com/mattgrayisok/craft-backblaze-b2/issues?state=open",
"source": "https://github.com/mattgrayisok/craft-backblaze-b2",
"docs": "https://github.com/mattgrayisok/craft-backblaze-b2/blob/master/README.md",
"rss": "https://github.com/mattgrayisok/craft-backblaze-b2/commits/master.atom"
},
"require": {
"craftcms/cms": "^3.1.5",
"mhetreramesh/flysystem-backblaze": "^1.5.2"
},
"autoload": {
"psr-4": {
"craft\\awss3\\": "src/"
}
},
"extra": {
"name": "Backblaze B2",
"handle": "backblaze-b2",
"documentationUrl": "https://github.com/mattgrayisok/craft-backblaze-b2/blob/master/README.md"
}
}