forked from ufirstgroup/laravel-lang-import-export
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
38 lines (38 loc) · 1.21 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
{
"name": "highsolutions/laravel-lang-import-export",
"description": "A Laravel package providing artisan commands to import and export language files from and to CSV.",
"keywords": ["laravel", "localization", "translation", "messages", "import", "export", "CSV"],
"authors": [
{
"name": "Michael Ruoss",
"email": "[email protected]"
},
{
"name": "HighSolutions",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=5.6.4|>=8.0.2",
"illuminate/support": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"HighSolutions\\LangImportExport\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"extra": {
"component": "package",
"frameworks": ["Laravel 5.7", "Laravel 5.8", "Laravel 6.x", "Laravel 7.x", "Laravel 8.x", "Laravel 9.x", "Laravel 10.x", "Laravel 11.x"],
"laravel": {
"providers": [
"HighSolutions\\LangImportExport\\LangImportExportServiceProvider"
]
}
},
"minimum-stability": "stable"
}