forked from ufirstgroup/laravel-lang-import-export
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
29 lines (29 loc) · 800 Bytes
/
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
{
"name": "iainmullan/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]"
}
],
"license": "MIT",
"require": {
"php": ">=5.3.0",
"illuminate/support": "~5.1"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"UFirst\\LangImportExport\\": "src/"
}
},
"extra": {
"component": "package",
"frameworks": ["Laravel 5"]
},
"minimum-stability": "stable"
}