Skip to content

Commit

Permalink
Merge pull request #10 from Laravel-Lang/2.x
Browse files Browse the repository at this point in the history
Namespace has been renamed to `LaravelLang\JsonFallback`
  • Loading branch information
andrey-helldar committed Dec 16, 2023
2 parents 4af21fa + 31c5c59 commit 9e8d449
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
blank_issues_enabled: false
contact_links:
- name: Bug Report
url: https://github.com/Laravel-Lang/common/issues/new?assignees=andrey-helldar&labels=bug%2Cjson-fallback&template=bug_report.yml&title=%5BBug%5D%3A+&environment-package-name=laravel-lang%2Fjson-fallback-hotfix
url: https://github.com/Laravel-Lang/common/issues/new?assignees=andrey-helldar&labels=bug%2Cjson-fallback&template=bug_report.yml&title=%5BBug%5D%3A+&environment-package-name=laravel-lang%2Fjson-fallback
about: Report a bug or other issue
- name: Feature Request
url: https://github.com/Laravel-Lang/common/issues/new?labels=feature%2Cjson-fallback&projects=&template=feature_request.yml
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Laravel Lang: JSON Fallback Hotfix
# Laravel Lang: JSON Fallback

![laravel lang publisher](https://preview.dragon-code.pro/laravel-lang/json-fallback-hotfix.svg?brand=laravel&mode=dark)
![laravel lang json fallback](https://preview.dragon-code.pro/laravel-lang/json-fallback.svg?brand=laravel&mode=dark)

[![Stable Version][badge_stable]][link_packagist]
[![Unstable Version][badge_unstable]][link_packagist]
Expand All @@ -21,18 +21,18 @@ Please see [CONTRIBUTING](https://laravel-lang.com/contributing.html) for detail
This package is licensed under the [MIT License][link_license].


[badge_build]: https://img.shields.io/github/actions/workflow/status/laravel-lang/json-fallback-hotfix/phpunit.yml?style=flat-square
[badge_build]: https://img.shields.io/github/actions/workflow/status/laravel-lang/json-fallback/tests.yml?style=flat-square

[badge_downloads]: https://img.shields.io/packagist/dt/laravel-lang/json-fallback-hotfix.svg?style=flat-square
[badge_downloads]: https://img.shields.io/packagist/dt/laravel-lang/json-fallback.svg?style=flat-square

[badge_license]: https://img.shields.io/packagist/l/laravel-lang/json-fallback-hotfix.svg?style=flat-square
[badge_license]: https://img.shields.io/packagist/l/laravel-lang/json-fallback.svg?style=flat-square

[badge_stable]: https://img.shields.io/github/v/release/laravel-lang/json-fallback-hotfix?label=stable&style=flat-square
[badge_stable]: https://img.shields.io/github/v/release/laravel-lang/json-fallback?label=stable&style=flat-square

[badge_unstable]: https://img.shields.io/badge/unstable-dev--main-orange?style=flat-square

[link_build]: https://github.com/laravel-lang/json-fallback-hotfix/actions
[link_build]: https://github.com/laravel-lang/json-fallback/actions

[link_license]: LICENSE

[link_packagist]: https://packagist.org/packages/laravel-lang/json-fallback-hotfix
[link_packagist]: https://packagist.org/packages/laravel-lang/json-fallback
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"LaravelLang\\JsonFallbackHotfix\\": "src"
"LaravelLang\\JsonFallback\\": "src"
}
},
"autoload-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/TranslationServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace LaravelLang\JsonFallbackHotfix;
namespace LaravelLang\JsonFallback;

use Illuminate\Translation\TranslationServiceProvider as BaseServiceProvider;

Expand Down
2 changes: 1 addition & 1 deletion src/Translator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace LaravelLang\JsonFallbackHotfix;
namespace LaravelLang\JsonFallback;

use Illuminate\Translation\Translator as BaseTranslator;

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Support\Facades\File;
use Illuminate\Translation\TranslationServiceProvider;
use LaravelLang\JsonFallbackHotfix\TranslationServiceProvider as FixedServiceProvider;
use LaravelLang\JsonFallback\TranslationServiceProvider as FixedServiceProvider;
use Orchestra\Testbench\TestCase as BaseTestCase;
use RuntimeException;

Expand Down

0 comments on commit 9e8d449

Please sign in to comment.