From 3db35b0005dd240b2b2bd3e8ab544fa3521a4714 Mon Sep 17 00:00:00 2001 From: Hassan Saad Date: Fri, 23 Apr 2021 23:41:35 +0100 Subject: [PATCH 1/5] Support Laravel 8 --- .idea/.gitignore | 8 ++ .idea/laravel-idea.xml | 6 ++ .idea/laravel-translation-manager.iml | 98 +++++++++++++++++++++++ .idea/modules.xml | 8 ++ .idea/php.xml | 94 ++++++++++++++++++++++ .idea/vcs.xml | 7 ++ composer.json | 109 ++++++++++++++------------ 7 files changed, 279 insertions(+), 51 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/laravel-idea.xml create mode 100644 .idea/laravel-translation-manager.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/laravel-idea.xml b/.idea/laravel-idea.xml new file mode 100644 index 0000000..3b7a51e --- /dev/null +++ b/.idea/laravel-idea.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/laravel-translation-manager.iml b/.idea/laravel-translation-manager.iml new file mode 100644 index 0000000..e0fdd6a --- /dev/null +++ b/.idea/laravel-translation-manager.iml @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1499991 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..1131a45 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..9523a0c --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/composer.json b/composer.json index 1c2c679..711e2a9 100755 --- a/composer.json +++ b/composer.json @@ -1,55 +1,62 @@ { - "name": "vsch/laravel-translation-manager", - "description": "Enhanced Laravel Translation Manager", - "keywords": [ - "laravel", - "translations", - "translator" + "name": "codetec-info/laravel-translation-manager", + "description": "Enhanced Laravel Translation Manager", + "keywords": [ + "laravel", + "translations", + "translator" + ], + "homepage": "https://github.com/codetec-info/laravel-translation-manager", + "license": "MIT", + "authors": [ + { + "name": "Hassan Saad", + "email": "hassan.saad@codetec.info", + "role": "Developer" + } + ], + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/codetec-info/laravel-translation-manager" + } + ], + "require": { + "php": ">=7.1.3", + "illuminate/support": "^5.0|^6.0|^7.0|^8.0", + "laravelcollective/html": "^5.0|^6.0", + "illuminate/translation": "^5.0|^6.0|^7.0|^8.0", + "doctrine/dbal": "~2.6", + "symfony/finder": "^4.0|^5.0", + "vsch/laravel-translation-manager": "dev-master" + }, + "require-dev": { + "phpspec/phpspec": "~7.0.1", + "fzaninotto/faker": "v1.9.2", + "mockery/mockery": "1.4.3", + "phpunit/phpunit": "~9.5.4" + }, + "autoload": { + "classmap": [ + "src/Classes" ], - "homepage": "https://github.com/vsch/laravel-translation-manager", - "license": "MIT", - "authors": [ - { - "name": "Vladimir Schneider", - "email": "vladimir.schneider@gmail.com", - "role": "Developer" - } + "files": [ + "src/Support/helpers.php" ], - "require": { - "php": ">=7.1.3", - "illuminate/support": "^5.6", - "laravelcollective/html": "^5.6", - "illuminate/translation": "^5.6", - "doctrine/dbal": "~2.6", - "symfony/finder": "~4.0" - }, - "require-dev": { - "phpspec/phpspec": "~3.0", - "fzaninotto/faker": "~1.4", - "mockery/mockery": "0.9.*", - "phpunit/phpunit": "~7.0" - }, - "autoload": { - "classmap": [ - "src/Classes" - ], - "files": [ - "src/Support/helpers.php" - ], - "psr-4": { - "Vsch\\TranslationManager\\": "src/" - } - }, - "autoload-dev": { - "classmap": [ - "tests/" - ], - "psr-4": { - } - }, - "scripts": { - "post-update-cmd": [ - ] - }, - "minimum-stability": "stable" + "psr-4": { + "Vsch\\TranslationManager\\": "src/" + } + }, + "autoload-dev": { + "classmap": [ + "tests/" + ], + "psr-4": { + } + }, + "scripts": { + "post-update-cmd": [ + ] + }, + "minimum-stability": "stable" } From ca0ca22ed216823bc86d6982ad4a543f1b4e9f3c Mon Sep 17 00:00:00 2001 From: Hassan Saad Date: Sat, 24 Apr 2021 00:42:46 +0100 Subject: [PATCH 2/5] Suppor Laravel 8 --- .idea/laravel-translation-manager.iml | 18 ++++++++---------- .idea/php-test-framework.xml | 14 ++++++++++++++ .idea/php.xml | 23 +++++++++++++---------- .idea/phpunit.xml | 10 ++++++++++ composer.json | 22 +++++++--------------- 5 files changed, 52 insertions(+), 35 deletions(-) create mode 100644 .idea/php-test-framework.xml create mode 100644 .idea/phpunit.xml diff --git a/.idea/laravel-translation-manager.iml b/.idea/laravel-translation-manager.iml index e0fdd6a..a578c85 100644 --- a/.idea/laravel-translation-manager.iml +++ b/.idea/laravel-translation-manager.iml @@ -28,7 +28,6 @@ - @@ -36,7 +35,6 @@ - @@ -44,12 +42,9 @@ - - - @@ -59,10 +54,8 @@ - - @@ -72,13 +65,11 @@ - - @@ -90,7 +81,14 @@ - + + + + + + + + diff --git a/.idea/php-test-framework.xml b/.idea/php-test-framework.xml new file mode 100644 index 0000000..80b13e3 --- /dev/null +++ b/.idea/php-test-framework.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml index 1131a45..124c924 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -25,7 +25,6 @@ - @@ -33,7 +32,6 @@ - @@ -41,12 +39,9 @@ - - - @@ -56,10 +51,8 @@ - - @@ -69,13 +62,11 @@ - - @@ -87,8 +78,20 @@ - + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/phpunit.xml b/.idea/phpunit.xml new file mode 100644 index 0000000..4f8104c --- /dev/null +++ b/.idea/phpunit.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/composer.json b/composer.json index 711e2a9..53de93c 100755 --- a/composer.json +++ b/composer.json @@ -1,40 +1,32 @@ { - "name": "codetec-info/laravel-translation-manager", + "name": "vsch/laravel-translation-manager", "description": "Enhanced Laravel Translation Manager", "keywords": [ "laravel", "translations", "translator" ], - "homepage": "https://github.com/codetec-info/laravel-translation-manager", + "homepage": "https://github.com/vsch/laravel-translation-manager", "license": "MIT", "authors": [ { - "name": "Hassan Saad", - "email": "hassan.saad@codetec.info", + "name": "Vladimir Schneider", + "email": "vladimir.schneider@gmail.com", "role": "Developer" } ], - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/codetec-info/laravel-translation-manager" - } - ], "require": { "php": ">=7.1.3", "illuminate/support": "^5.0|^6.0|^7.0|^8.0", "laravelcollective/html": "^5.0|^6.0", "illuminate/translation": "^5.0|^6.0|^7.0|^8.0", "doctrine/dbal": "~2.6", - "symfony/finder": "^4.0|^5.0", - "vsch/laravel-translation-manager": "dev-master" + "symfony/finder": "^4.0|^5.0" }, "require-dev": { "phpspec/phpspec": "~7.0.1", - "fzaninotto/faker": "v1.9.2", - "mockery/mockery": "1.4.3", - "phpunit/phpunit": "~9.5.4" + "mockery/mockery": "0.9.*", + "phpunit/phpunit": "~7.0" }, "autoload": { "classmap": [ From 2ca4f3b2ef7629582430bcbc092e1fc0e63dd47a Mon Sep 17 00:00:00 2001 From: Hassan Saad Date: Sat, 24 Apr 2021 00:51:07 +0100 Subject: [PATCH 3/5] Laravel 8-A --- .idea/laravel-translation-manager.iml | 1 + .idea/php.xml | 1 + composer.json | 13 ++++++++++--- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.idea/laravel-translation-manager.iml b/.idea/laravel-translation-manager.iml index a578c85..b90a29e 100644 --- a/.idea/laravel-translation-manager.iml +++ b/.idea/laravel-translation-manager.iml @@ -89,6 +89,7 @@ + diff --git a/.idea/php.xml b/.idea/php.xml index 124c924..ee21204 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -86,6 +86,7 @@ + diff --git a/composer.json b/composer.json index 53de93c..ec9ceb1 100755 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "vsch/laravel-translation-manager", + "name": "codetec-info/laravel-translation-manager", "description": "Enhanced Laravel Translation Manager", "keywords": [ "laravel", "translations", "translator" ], - "homepage": "https://github.com/vsch/laravel-translation-manager", + "homepage": "https://github.com/codetec-info/laravel-translation-manager", "license": "MIT", "authors": [ { @@ -15,13 +15,20 @@ "role": "Developer" } ], + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/codetec-info/laravel-translation-manager" + } + ], "require": { "php": ">=7.1.3", "illuminate/support": "^5.0|^6.0|^7.0|^8.0", "laravelcollective/html": "^5.0|^6.0", "illuminate/translation": "^5.0|^6.0|^7.0|^8.0", "doctrine/dbal": "~2.6", - "symfony/finder": "^4.0|^5.0" + "symfony/finder": "^4.0|^5.0", + "vsch/laravel-translation-manager": "dev-l8" }, "require-dev": { "phpspec/phpspec": "~7.0.1", From ac7659c63a201472e4d23c056e2bcf067a76d05e Mon Sep 17 00:00:00 2001 From: Hassan Saad Date: Sat, 24 Apr 2021 01:00:16 +0100 Subject: [PATCH 4/5] 8.1 --- .idea/laravel-translation-manager.iml | 1 - .idea/php.xml | 1 - composer.json | 3 +-- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.idea/laravel-translation-manager.iml b/.idea/laravel-translation-manager.iml index b90a29e..a578c85 100644 --- a/.idea/laravel-translation-manager.iml +++ b/.idea/laravel-translation-manager.iml @@ -89,7 +89,6 @@ - diff --git a/.idea/php.xml b/.idea/php.xml index ee21204..124c924 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -86,7 +86,6 @@ - diff --git a/composer.json b/composer.json index ec9ceb1..00e5c69 100755 --- a/composer.json +++ b/composer.json @@ -27,8 +27,7 @@ "laravelcollective/html": "^5.0|^6.0", "illuminate/translation": "^5.0|^6.0|^7.0|^8.0", "doctrine/dbal": "~2.6", - "symfony/finder": "^4.0|^5.0", - "vsch/laravel-translation-manager": "dev-l8" + "symfony/finder": "^4.0|^5.0" }, "require-dev": { "phpspec/phpspec": "~7.0.1", From 195fc5dc3a63adb83d01f69e797a92854f99821a Mon Sep 17 00:00:00 2001 From: Hassan Saad Date: Sat, 24 Apr 2021 01:16:07 +0100 Subject: [PATCH 5/5] Laravel 8.x --- .idea/laravel-translation-manager.iml | 37 ++++++++++++--------------- .idea/php.xml | 37 ++++++++++++--------------- composer.json | 10 ++------ 3 files changed, 34 insertions(+), 50 deletions(-) diff --git a/.idea/laravel-translation-manager.iml b/.idea/laravel-translation-manager.iml index a578c85..6d9bb4b 100644 --- a/.idea/laravel-translation-manager.iml +++ b/.idea/laravel-translation-manager.iml @@ -6,25 +6,18 @@ - - - - - - - @@ -58,37 +51,39 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/.idea/php.xml b/.idea/php.xml index 124c924..b17f685 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -3,25 +3,18 @@ - - - - - - - @@ -55,37 +48,39 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/composer.json b/composer.json index 00e5c69..53de93c 100755 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "codetec-info/laravel-translation-manager", + "name": "vsch/laravel-translation-manager", "description": "Enhanced Laravel Translation Manager", "keywords": [ "laravel", "translations", "translator" ], - "homepage": "https://github.com/codetec-info/laravel-translation-manager", + "homepage": "https://github.com/vsch/laravel-translation-manager", "license": "MIT", "authors": [ { @@ -15,12 +15,6 @@ "role": "Developer" } ], - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/codetec-info/laravel-translation-manager" - } - ], "require": { "php": ">=7.1.3", "illuminate/support": "^5.0|^6.0|^7.0|^8.0",