-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcomposer.json
38 lines (38 loc) · 1.1 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": "ufirst/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": "michael.ruoss@ufirstgroup.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.3",
"illuminate/support": "^8.0|^9.0|^10.0",
"symfony/var-exporter": "^5.1|^6"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"UFirst\\LangImportExport\\": "src/"
}
},
"extra": {
"component": "package",
"frameworks": ["Laravel 7"],
"laravel": {
"providers": [
"UFirst\\LangImportExport\\LangImportExportServiceProvider"
],
"aliases": {
"LangListService": "UFirst\\LangImportExport\\Facades\\LangListService"
}
}
},
"minimum-stability": "stable"
}