Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"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"],
"keywords": [
"laravel",
"localization",
"translation",
"messages",
"import",
"export",
"CSV"
],
"authors": [
{
"name": "Michael Ruoss",
Expand All @@ -15,7 +23,7 @@
"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"
"illuminate/support": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
},
"autoload": {
"psr-4": {
Expand All @@ -27,11 +35,20 @@
},
"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"],
"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"
Expand Down