Skip to content

Commit 9e8d449

Browse files
Merge pull request #10 from Laravel-Lang/2.x
Namespace has been renamed to `LaravelLang\JsonFallback`
2 parents 4af21fa + 31c5c59 commit 9e8d449

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Bug Report
4-
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
4+
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
55
about: Report a bug or other issue
66
- name: Feature Request
77
url: https://github.com/Laravel-Lang/common/issues/new?labels=feature%2Cjson-fallback&projects=&template=feature_request.yml

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Laravel Lang: JSON Fallback Hotfix
1+
# Laravel Lang: JSON Fallback
22

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

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

2323

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

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

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

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

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

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

3636
[link_license]: LICENSE
3737

38-
[link_packagist]: https://packagist.org/packages/laravel-lang/json-fallback-hotfix
38+
[link_packagist]: https://packagist.org/packages/laravel-lang/json-fallback

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"minimum-stability": "stable",
2727
"autoload": {
2828
"psr-4": {
29-
"LaravelLang\\JsonFallbackHotfix\\": "src"
29+
"LaravelLang\\JsonFallback\\": "src"
3030
}
3131
},
3232
"autoload-dev": {

src/TranslationServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace LaravelLang\JsonFallbackHotfix;
5+
namespace LaravelLang\JsonFallback;
66

77
use Illuminate\Translation\TranslationServiceProvider as BaseServiceProvider;
88

src/Translator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace LaravelLang\JsonFallbackHotfix;
5+
namespace LaravelLang\JsonFallback;
66

77
use Illuminate\Translation\Translator as BaseTranslator;
88

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use Illuminate\Support\Facades\File;
88
use Illuminate\Translation\TranslationServiceProvider;
9-
use LaravelLang\JsonFallbackHotfix\TranslationServiceProvider as FixedServiceProvider;
9+
use LaravelLang\JsonFallback\TranslationServiceProvider as FixedServiceProvider;
1010
use Orchestra\Testbench\TestCase as BaseTestCase;
1111
use RuntimeException;
1212

0 commit comments

Comments
 (0)