-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.16 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": "nodus-it/laravel-translation-manager",
"description": "TranslationManager is a package for easy management translation strings in laravel. It has the ability to perform the translation on the console or to create an export with all the strings that can later be imported again.",
"license": "MIT",
"version": "0.1-beta",
"type": "library",
"homepage": "http://www.nodus-it.de/",
"keywords": [
"laravel",
"translation",
"artisan",
"translation",
"localization"
],
"authors": [
{
"name": "Bastian Schur",
"email": "[email protected]",
"homepage": "http://www.nodus-it.de/",
"role": "Main Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"NodusFramework\\TranslationManager\\": "src/"
}
},
"require": {
"php": ">=7.4",
"laravel/framework": ">=5.5"
},
"require-dev": {
"aws/aws-sdk-php": "3.*"
},
"suggest": {
"aws/aws-sdk-php": "Allows automatic translation by aws service"
},
"extra": {
"laravel": {
"providers": [
"NodusFramework\\TranslationManager\\ServiceProvider"
]
}
}
}