forked from timmyomahony/craft-remote-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.25 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
{
"name": "weareferal/remote-core",
"description": "Backend module for remote-sync and remote-backup",
"type": "craft-module",
"license": "proprietary",
"authors": [
{
"name": "Timmy O'Mahony",
"homepage": "https://timmyomahony.com"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"weareferal\\remotecore\\": "src/"
}
},
"extra": {
"name": "Remote Core",
"handle": "remote-core",
"changelogUrl": "https://raw.githubusercontent.com/weareferal/craft-remote-core/master/CHANGELOG.md",
"class": "weareferal\\remotecore\\RemoteCoreModule"
},
"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"
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}