forked from AcclaroInc/craft-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.49 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": "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",
"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": "^4.4.2",
"guzzlehttp/guzzle": "^7.0",
"composer/composer": "^2.1.9",
"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"
}
}