From 986db714e03f1bea4356c597311c56a9cf3792e1 Mon Sep 17 00:00:00 2001 From: Vincent Garnier Date: Thu, 26 Oct 2023 11:09:32 +0200 Subject: [PATCH] Removed support for Laravel 9 and 8 versions for development --- .editorconfig | 15 +++++++++++++++ .gitattributes | 4 ++++ CHANGELOG.md | 7 +++++++ composer.json | 15 ++++++++++----- src/ServiceProvider.php | 1 - 5 files changed, 36 insertions(+), 6 deletions(-) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6537ca4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ce3fbb3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/.editorconfig export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/generate-glossary export-ignore \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c24ba31..743d6fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,18 @@ CHANGELOG ========= +1.3.0 (2023-10-26) +------------------ + +- Removed support for Laravel 9 and 8 versions for development + + 1.2.1 (2023-05-10) ------------------ - Change key in misc, replace "required" by "required_field" ; see https://github.com/Laravel-Lang/publisher/issues/329 + 1.2.0 (2023-05-01) ------------------ diff --git a/composer.json b/composer.json index 8706604..357ec07 100644 --- a/composer.json +++ b/composer.json @@ -23,10 +23,10 @@ "laravel-lang/publisher": "^14.0" }, "require-dev": { - "illuminate/filesystem": "^8.0 || ^9.0 || ^10.0", - "illuminate/support": "^8.0 || ^9.0 || ^10.0", - "laravel-lang/status-generator": "^1.13", - "phpunit/phpunit": "^9.6", + "illuminate/filesystem": "^10.0 || ^11.0", + "illuminate/support": "^10.0 || ^11.0", + "laravel-lang/status-generator": "^1.19", + "phpunit/phpunit": "^10.0", "symfony/var-dumper": "^6.0" }, "autoload": { @@ -47,5 +47,10 @@ } }, "minimum-stability": "stable", - "prefer-stable": true + "prefer-stable": true, + "config": { + "allow-plugins": { + "php-http/discovery": true + } + } } diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 20d2c6f..3845eba 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -4,7 +4,6 @@ namespace GenericTermTranslations; -use GenericTermTranslations\Console\GenerateGlossary; use Illuminate\Support\ServiceProvider as BaseServiceProvider; use LaravelLang\Publisher\Plugins\Provider;