-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.26 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
{
"name": "jandh/translator",
"description": "A translation field for Craft CMS ",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"translator"
],
"support": {
"docs": "https://github.com/jan-dh/translator#readme",
"issues": "https://github.com/jan-dh/translator/issues"
},
"license": "MIT",
"authors": [
{
"name": "Jan D'Hollander",
"homepage": "https://www.thebasement.be/"
}
],
"require": {
"craftcms/cms": "^3.0|^4.0"
},
"autoload": {
"psr-4": {
"jandh\\translator\\": "src/"
}
},
"extra": {
"name": "Translator",
"handle": "translator",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/jan-dh/translator/blob/master/CHANGELOG.md",
"class": "jandh\\translator\\Translator"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}