-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
57 lines (57 loc) · 1.64 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
{
"name": "weareferal/remote-sync",
"description": "Sync your database and assets across Craft environments",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"sync"
],
"support": {
"docs": "https://craft-plugins.timmyomahony.com/remote-sync",
"issues": "https://github.com/timmyomahony/craft-remote-sync/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Timmy O'Mahony",
"homepage": "https://timmyomahony.com"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"php": "^8.0.2",
"weareferal/remote-core": "5.0.0"
},
"require-dev": {
"phpstan/phpstan": "1.12.x-dev",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"weareferal\\remotesync\\": "src/"
}
},
"extra": {
"name": "Remote Sync",
"handle": "remote-sync",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/timmyomahony/craft-remote-sync/master/CHANGELOG.md",
"class": "weareferal\\remotesync\\RemoteSync"
},
"suggest": {
"aws/aws-sdk-php": "Required for AWS S3, Backblaze or Digital Ocean Spaces usage",
"kunalvarma05/dropbox-php-sdk": "Required for Dropbox usage",
"google/apiclient": "Required for Google Drive usage"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}