From fbbf05f8b72f73515b57c891ae23deb4193066a6 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 19 Feb 2025 02:25:54 +0000 Subject: [PATCH] Bump dependencies for Laravel 12 --- composer.json | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index c465315..e687962 100644 --- a/composer.json +++ b/composer.json @@ -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", @@ -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": { @@ -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"