-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
40 lines (40 loc) · 1.19 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
{
"name": "jimbojsb/db-snapshot",
"description": "Snapshot your database with mysqldump and store it to a an asset volume (S3). Also restore it from that same location. Great for local dev snapshots and nightly backups.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"db snapshot"
],
"support": {
"docs": "https://github.com/jimbojsb/db-snapshot/blob/master/README.md",
"issues": "https://github.com/jimbojsb/db-snapshot/issues"
},
"license": "MIT",
"authors": [
{
"name": "Josh butts",
"homepage": "https://github.com/jimbojsb"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"league/flysystem-aws-s3-v3": "^1.0"
},
"autoload": {
"psr-4": {
"jimbojsb\\dbsnapshot\\": "src/"
}
},
"extra": {
"name": "DB Snapshot",
"handle": "db-snapshot",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/jimbojsb/db-snapshot/master/CHANGELOG.md",
"class": "jimbojsb\\dbsnapshot\\DbSnapshot"
}
}