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

Skip to content

Commit 0315b58

Browse files
authored
Merge pull request Laravel-Lang#1919 from andrey-helldar/patch/2021-12-01/17-42
Upgrading dependencies
2 parents 33c8ac1 + b8a5f35 commit 0315b58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+98
-103
lines changed

.github/workflows/phpunit.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,9 @@ jobs:
1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
1616
with:
17-
php-version: 8.0
1817
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json
1918
coverage: none
2019

21-
- name: Composer self update
22-
run: composer self-update
23-
2420
- name: Install dependencies
2521
run: composer update --prefer-stable --prefer-dist --no-progress --no-interaction
2622

.github/workflows/self-update.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.0
2120
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv, json
2221
coverage: none
2322

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+
* [Lang Publisher](https://github.com/Laravel-Lang/publisher) by [*@Laravel-Lang/laravel-lang*](https://github.com/Laravel-Lang/publisher) - 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
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;
1010

11-
final class Application implements ApplicationContract
11+
class Application implements ApplicationContract
1212
{
1313
use Makeable;
1414

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
{

0 commit comments

Comments
 (0)