-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
56 lines (56 loc) · 1.7 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
{
"name": "acclaro/translations",
"description": "Easily launch and manage multilingual Craft websites without having to copy/paste content or manually track updates.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"translations",
"multisite",
"localization",
"multisite translations",
"translation plugin for craft"
],
"support": {
"docs": "https://github.com/AcclaroInc/craft-translations/wiki",
"issues": "https://github.com/AcclaroInc/craft-translations/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Acclaro",
"homepage": "http://www.acclaro.com/"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"guzzlehttp/guzzle": "^7.0",
"composer/composer": "^2.7.0",
"google/cloud-translate": "^1.15",
"spatie/guzzle-rate-limiter-middleware": "^2.0"
},
"autoload": {
"psr-4": {
"acclaro\\translations\\": "src/"
}
},
"extra": {
"name": "Translations",
"handle": "translations",
"hasCpSection": true,
"changelogUrl": "https://github.com/AcclaroInc/craft-translations/master/CHANGELOG.md",
"documentationUrl": "https://github.com/AcclaroInc/craft-translations/wiki",
"components": {
"translationPluginForCraftService": "acclaro\\translations\\services\\TranslationsService"
},
"class": "acclaro\\translations\\Translations"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}