From b59f508059254a1f7dc4713e7f70cde9252384fe Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Wed, 5 Jun 2024 22:17:19 +0300 Subject: [PATCH] Bump dependencies --- composer.json | 22 +++++++++++----------- tests/TestCase.php | 2 ++ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index d10582a5a..684cca5ad 100644 --- a/composer.json +++ b/composer.json @@ -50,19 +50,19 @@ }, "require": { "php": "^8.1", - "laravel-lang/actions": "^1.1", - "laravel-lang/attributes": "^2.7", - "laravel-lang/http-statuses": "^3.7", - "laravel-lang/json-fallback": "^2.0", - "laravel-lang/lang": "^13.12 || ^14.0 || ^15.0", - "laravel-lang/locales": "^2.3", - "laravel-lang/publisher": "^16.0" + "laravel-lang/actions": "^1.8.3", + "laravel-lang/attributes": "^2.10.7", + "laravel-lang/http-statuses": "^3.8.3", + "laravel-lang/json-fallback": "^2.1", + "laravel-lang/lang": "^13.12 || ^14.0 || ^15.5.1", + "laravel-lang/locales": "^2.8", + "laravel-lang/publisher": "^16.4" }, "require-dev": { - "dragon-code/support": "^6.12", - "orchestra/testbench": "^8.17 || ^9.0", - "phpunit/phpunit": "^10.5.3", - "symfony/var-dumper": "^6.4 || ^7.0" + "dragon-code/support": "^6.13", + "orchestra/testbench": "^8.17 || ^9.1.2", + "phpunit/phpunit": "^10.5.20", + "symfony/var-dumper": "^6.4 || ^7.1.1" }, "minimum-stability": "stable", "prefer-stable": true, diff --git a/tests/TestCase.php b/tests/TestCase.php index c72594ae6..934a9f5fa 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -6,6 +6,7 @@ use DragonCode\Support\Facades\Filesystem\Directory; use LaravelLang\Attributes\ServiceProvider as AttributesServiceProvider; +use LaravelLang\Config\ServiceProvider as ConfigServiceProvider; use LaravelLang\HttpStatuses\ServiceProvider as HttpStatusesServiceProvider; use LaravelLang\Lang\ServiceProvider as LangServiceProvider; use LaravelLang\LocaleList\Locale; @@ -30,6 +31,7 @@ protected function getPackageProviders($app): array AttributesServiceProvider::class, HttpStatusesServiceProvider::class, PublisherServiceProvider::class, + ConfigServiceProvider::class, ]; }