-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·53 lines (53 loc) · 1.37 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
{
"name": "simplygoodwork/craft-remote",
"description": "Send your Craft site's telemetry like versions, installed plugins, and more to the third-party Craft Remote service.",
"type": "craft-plugin",
"version": "4.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"remote",
"craft-remote"
],
"license": "MIT",
"authors": [
{
"name": "Good Work",
"homepage": "https://simplygoodwork.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"simplygoodwork\\remote\\": "src/"
}
},
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0",
"nystudio107/craft-plugin-vite": "^4.0.0",
"nystudio107/craft-code-editor": "^1.0"
},
"extra": {
"name": "Craft Remote",
"handle": "remote",
"developer": "Good Work",
"developerUrl": "https://simplygoodwork.com",
"components": {
"sync": "simplygoodwork\\remote\\services\\Sync"
},
"class": "simplygoodwork\\remote\\Remote"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"craftcms/rector": "dev-main"
}
}