-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.04 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
{
"name": "unionco/craft-sync-db",
"description": "Craft 3 plugin to sync database across environments",
"type": "craft-plugin",
"version": "0.10.1.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft-sync-db"
],
"support": {
"docs": "https://github.com/unionco/craft-sync-db",
"issues": "https://github.com/unionco/craft-sync-db"
},
"license": "MIT",
"authors": [
{
"name": "Abry Rath<[email protected]>",
"homepage": "https://github.com/unionco"
}
],
"require": {
"craftcms/cms": "^3.5.0",
"monolog/monolog": "^1.24|^2.0",
"unionco/syncdb": "^0.10.0"
},
"autoload": {
"psr-4": {
"unionco\\craftsyncdb\\": "src/"
}
},
"extra": {
"name": "SyncDb",
"handle": "sync-db",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "???",
"components": {
"sync": "unionco\\craftsyncdb\\services\\Sync"
},
"class": "unionco\\craftsyncdb\\SyncDbPlugin"
},
"require-dev": {
"vimeo/psalm": "^3.0"
}
}