From aeaeea87838405d677bbbc509ee664ea5a3a0fc4 Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Thu, 10 Dec 2020 23:54:59 +0000 Subject: [PATCH 1/7] fix deprecated issue --- 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 80a6ad5e37dc1c0e9352abc7ab56f79125191a26 Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Fri, 11 Dec 2020 00:11:05 +0000 Subject: [PATCH 2/7] add laravel 6.x to laravel 8.x support --- composer.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index 580cfe6..071b788 100644 --- a/composer.json +++ b/composer.json @@ -1,27 +1,28 @@ { - "name": "themsaid/laravel-langman", + "name": "zomblateam/laravel-langman", "description": "Manage language files with ease.", "keywords": ["laravel", "localization", "multilingual"], - "homepage": "https://github.com/themsaid/laravel-langman", + "homepage": "https://github.com/zomblateam/laravel-langman", "license": "MIT", "authors": [ { "name": "Mohamed Said", "email": "theMohamedSaid@gmail.com", "homepage": "https://themsaid.github.io" + "Updated": "Adel Kedjour " } ], "require": { - "php": "^5.5.9 || ^7.0", - "illuminate/support": "~5.1", - "illuminate/console": "~5.1", - "illuminate/filesystem": "~5.1" + "php": "^5.5.9 || ^8.0", + "illuminate/support": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", + "illuminate/console": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", + "illuminate/filesystem": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", }, "require-dev": { - "phpunit/phpunit" : "^4.8 || ^5.0", - "orchestra/testbench": "~3.0", - "orchestra/database": "~3.0", - "mockery/mockery": "~0.9.4" + "phpunit/phpunit" : "^4.8 || ^5.0 || ^8.5.8|^9.3.3", + "orchestra/testbench": "^3.0 || ^4.12.2", + "orchestra/database": "^3.0 || ^5.1.0", + "mockery/mockery": "^0.9.4 || ^1.3.3" }, "autoload": { "psr-4": { From c5a1e149edbee361bb3de0a08c25b55bb7b466d4 Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Mon, 14 Dec 2020 18:11:56 +0000 Subject: [PATCH 3/7] Update composer.json --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index 071b788..ae0ad90 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,6 @@ "name": "Mohamed Said", "email": "theMohamedSaid@gmail.com", "homepage": "https://themsaid.github.io" - "Updated": "Adel Kedjour " } ], "require": { From af7c324303f480009d967256ce2fa7525d4c9026 Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Mon, 14 Dec 2020 18:12:46 +0000 Subject: [PATCH 4/7] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ae0ad90..f51adad 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "php": "^5.5.9 || ^8.0", "illuminate/support": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/console": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", - "illuminate/filesystem": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", + "illuminate/filesystem": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1" }, "require-dev": { "phpunit/phpunit" : "^4.8 || ^5.0 || ^8.5.8|^9.3.3", From 8fabf8f91d20105130e698ad74e8966d57823640 Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Mon, 14 Dec 2020 18:28:56 +0000 Subject: [PATCH 5/7] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f51adad..10daee2 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^5.5.9 || ^8.0", + "php": "^5.5.9", "illuminate/support": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/console": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/filesystem": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1" From 88744e57bbbfc9c82e730f1ade671dbeaf02780f Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Mon, 14 Dec 2020 18:58:37 +0000 Subject: [PATCH 6/7] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 10daee2..c53083f 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "^5.5.9", + "php": "'^7.3|^8.0", "illuminate/support": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/console": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/filesystem": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1" From 97f0895fb3df5e443d2f5e221d853a8631f68b58 Mon Sep 17 00:00:00 2001 From: Adel Kedjour Date: Mon, 14 Dec 2020 18:58:57 +0000 Subject: [PATCH 7/7] fix php version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c53083f..d2db0bb 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ } ], "require": { - "php": "'^7.3|^8.0", + "php": "^7.3|^8.0", "illuminate/support": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/console": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1", "illuminate/filesystem": "^5.1 || ^5.8 || ^6.3 || ^7.0.1 || ^8.18.1"