From 1d933ac8a2e1f6b4b927cf65b5072f7cee04e4d7 Mon Sep 17 00:00:00 2001 From: Ayman Mohammed Date: Mon, 14 Feb 2022 12:03:38 +0300 Subject: [PATCH 1/5] Support for latest laravel version --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 580cfe6..8088015 100644 --- a/composer.json +++ b/composer.json @@ -12,10 +12,10 @@ } ], "require": { - "php": "^5.5.9 || ^7.0", - "illuminate/support": "~5.1", - "illuminate/console": "~5.1", - "illuminate/filesystem": "~5.1" + "php": ">=7.2", + "illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0", + "illuminate/console": "~5.1|^6.0|^7.0", + "illuminate/filesystem": "~5.1|^6.0|^7.0" }, "require-dev": { "phpunit/phpunit" : "^4.8 || ^5.0", From 053600d2c0c169de7f0185eb7ebd9f99d196e640 Mon Sep 17 00:00:00 2001 From: Ayman Mohammed Date: Wed, 2 Mar 2022 07:38:35 +0300 Subject: [PATCH 2/5] support laravel 8 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 8088015..42ea66c 100644 --- a/composer.json +++ b/composer.json @@ -14,8 +14,8 @@ "require": { "php": ">=7.2", "illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0", - "illuminate/console": "~5.1|^6.0|^7.0", - "illuminate/filesystem": "~5.1|^6.0|^7.0" + "illuminate/console": "~5.1|^6.0|^7.0|^8.0", + "illuminate/filesystem": "~5.1|^6.0|^7.0|^8.0|^9.0" }, "require-dev": { "phpunit/phpunit" : "^4.8 || ^5.0", From 0d64170689e8c765987e20370b68cf8a2f6d9297 Mon Sep 17 00:00:00 2001 From: Ayman Mohammed Date: Wed, 2 Mar 2022 07:48:44 +0300 Subject: [PATCH 3/5] fix: Unparenthesized --- src/Commands/FindCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/FindCommand.php b/src/Commands/FindCommand.php index 73cad05..fcc63a2 100644 --- a/src/Commands/FindCommand.php +++ b/src/Commands/FindCommand.php @@ -112,7 +112,7 @@ private function tableRows() $original[$languageKey] = isset($values[$languageKey]) ? $values[$languageKey] - : isset($filesContent[$fileName][$languageKey][$key]) ? $filesContent[$fileName][$languageKey][$key] : ''; + : (isset($filesContent[$fileName][$languageKey][$key]) ? $filesContent[$fileName][$languageKey][$key] : ''); } // Sort the language values based on language name From c8722a31d63d13e88e932d8e3bbb82d22fe9881a Mon Sep 17 00:00:00 2001 From: Ayman Alhattami Date: Fri, 1 Jul 2022 14:32:39 +0300 Subject: [PATCH 4/5] support laravel 9 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 42ea66c..35c493a 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "require": { "php": ">=7.2", "illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0", - "illuminate/console": "~5.1|^6.0|^7.0|^8.0", + "illuminate/console": "~5.1|^6.0|^7.0|^8.0|^9.0", "illuminate/filesystem": "~5.1|^6.0|^7.0|^8.0|^9.0" }, "require-dev": { From 0bf24865d442ca94ce2e28bc7dd5a397411c5399 Mon Sep 17 00:00:00 2001 From: Ayman Alhattami Date: Thu, 20 Apr 2023 17:57:21 +0300 Subject: [PATCH 5/5] Update composer.json --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 35c493a..675bf37 100644 --- a/composer.json +++ b/composer.json @@ -13,9 +13,9 @@ ], "require": { "php": ">=7.2", - "illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0", - "illuminate/console": "~5.1|^6.0|^7.0|^8.0|^9.0", - "illuminate/filesystem": "~5.1|^6.0|^7.0|^8.0|^9.0" + "illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/console": "~5.1|^6.0|^7.0|^8.0|^9.0|^10.0", + "illuminate/filesystem": "~5.1|^6.0|^7.0|^8.0|^9.0|^10.0" }, "require-dev": { "phpunit/phpunit" : "^4.8 || ^5.0",