Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7617ede

Browse files
author
Andrey Helldar
committed
Upgrading dependencies
1 parent 0b37051 commit 7617ede

38 files changed

+71
-71
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2021 Laravel-Lang team
3+
Copyright (c) 2021 Laravel-Lang Team
44

55
> Permission is hereby granted, free of charge, to any person obtaining a copy
66
> of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ In this repository, you can find the lang files for the [Laravel Framework 4/5/6
2121

2222
## Translation managers
2323

24+
* [Official Publisher](https://github.com/Laravel-Lang/publisher) by [*@andrey-helldar*](https://github.com/andrey-helldar) - Easy installation and update of translation files for your project.
2425
* [LaravelLang](https://github.com/ARCANEDEV/LaravelLang) by [*@arcanedev-maroc*](https://github.com/ARCANEDEV) - Translations manager and checker for Laravel.
2526
* [Laravel-lang](https://github.com/overtrue/laravel-lang) by [*@overtrue*](https://github.com/overtrue) - Command to add languages in your project.
26-
* [Lang Publisher](https://github.com/andrey-helldar/laravel-lang-publisher) by [*@andrey-helldar*](https://github.com/andrey-helldar) - Easy installation and update of translation files for your project.
2727

2828
## Credits
2929

app/main/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace LaravelLang\Lang;
44

55
use Dotenv\Dotenv;
6-
use Helldar\Support\Concerns\Makeable;
6+
use DragonCode\Support\Concerns\Makeable;
77
use LaravelLang\Lang\Contracts\Application as ApplicationContract;
88
use LaravelLang\Lang\Contracts\Processable;
99
use LaravelLang\Lang\Facades\Env;

app/main/Concerns/Contains.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace LaravelLang\Lang\Concerns;
44

5-
use Helldar\Support\Facades\Helpers\Filesystem\Directory;
6-
use Helldar\Support\Facades\Helpers\Str;
5+
use DragonCode\Support\Facades\Helpers\Filesystem\Directory;
6+
use DragonCode\Support\Facades\Helpers\Str;
77
use LaravelLang\Lang\Constants\Locales;
88

99
trait Contains

app/main/Concerns/Countable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace LaravelLang\Lang\Concerns;
44

5-
use Helldar\Support\Facades\Helpers\Digit;
6-
use Helldar\Support\Facades\Helpers\Str;
5+
use DragonCode\Support\Facades\Helpers\Digit;
6+
use DragonCode\Support\Facades\Helpers\Str;
77
use LaravelLang\Lang\Services\Counter;
88

99
trait Countable

app/main/Concerns/Excludes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace LaravelLang\Lang\Concerns;
44

5-
use Helldar\PrettyArray\Services\File as PrettyFile;
6-
use Helldar\Support\Facades\Helpers\Filesystem\File;
5+
use DragonCode\PrettyArray\Services\File as PrettyFile;
6+
use DragonCode\Support\Facades\Helpers\Filesystem\File;
77

88
/** @mixin \LaravelLang\Lang\Processors\Processor */
99
trait Excludes

app/main/Concerns/Storable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace LaravelLang\Lang\Concerns;
44

5-
use Helldar\Support\Facades\Helpers\Instance;
6-
use Helldar\Support\Tools\Stub;
5+
use DragonCode\Support\Facades\Helpers\Instance;
6+
use DragonCode\Support\Tools\Stub;
77
use LaravelLang\Lang\Contracts\Stringable;
88

99
trait Storable

app/main/Concerns/Template.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace LaravelLang\Lang\Concerns;
44

5-
use Helldar\PrettyArray\Services\File;
6-
use Helldar\Support\Facades\Helpers\Str;
5+
use DragonCode\PrettyArray\Services\File;
6+
use DragonCode\Support\Facades\Helpers\Str;
77

88
trait Template
99
{

app/main/Contracts/Filesystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace LaravelLang\Lang\Contracts;
44

5-
use Helldar\Support\Tools\Stub;
5+
use DragonCode\Support\Tools\Stub;
66
use LaravelLang\Lang\Application;
77

88
interface Filesystem

app/main/Facades/Env.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Dotenv\Repository\AdapterRepository;
66
use Dotenv\Repository\RepositoryInterface;
7-
use Helldar\Support\Facades\Facade;
7+
use DragonCode\Support\Facades\Facade;
88
use LaravelLang\Lang\Support\Env as Support;
99

1010
/**

0 commit comments

Comments
 (0)