Skip to content

Commit

Permalink
Обновит Composer зависимости
Browse files Browse the repository at this point in the history
  • Loading branch information
russsiq committed Apr 22, 2022
1 parent 579a842 commit 4aaa145
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Менеджер файла переменных окружения Laravel 8.x.
# Менеджер файла переменных окружения Laravel 9.x.

Данный менеджер используется только для физического взаимодействия с файлом переменных окружения.

Expand All @@ -15,7 +15,7 @@
composer require russsiq/laravel-env-manager
```

Если в вашем приложении включен отказ от обнаружения пакетов в директиве `dont-discover` в разделе `extra` файла `composer.json`, то необходимо самостоятельно добавить следующее:
Если в вашем приложении включен отказ от обнаружения пакетов в директиве `dont-discover` в разделе `extra` файла `composer.json`, то необходимо самостоятельно добавить следующее в файле `config/app.php`:

- Провайдер услуг в раздел `providers`:

Expand All @@ -33,7 +33,7 @@ Russsiq\EnvManager\EnvManagerServiceProvider::class,

### Методы

Все публичные методы менеджера доступны через фасад `EnvManager`:
Все публичные методы доступны через фасад `EnvManager`:

```php
EnvManager::someMethod(example $someParam);
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "russsiq/laravel-env-manager",
"description": "Менеджер файла переменных окружения Laravel 8.x.",
"description": "Менеджер файла переменных окружения Laravel 9.x.",
"keywords": [
"laravel",
"environment-file"
Expand All @@ -17,11 +17,11 @@
}
],
"require": {
"php": "8.0.*",
"illuminate/support": "8.*"
"php": "8.1.*",
"illuminate/support": "9.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.6"
"phpunit/phpunit": "^9.5.20"
},
"autoload": {
"psr-4": {
Expand Down
20 changes: 11 additions & 9 deletions tests/testdox.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
font-variant-ligatures: common-ligatures;
font-kerning: normal;
margin-left: 2em;
background-color: #ffffff;
color: #000000;
}

body > ul > li {
Expand All @@ -30,20 +32,20 @@
<body>
<h2 id="Tests\Feature\Support\LaravelCollectionEnvManagerTest">Laravel Collection Env Manager (Tests\Feature\Support\LaravelCollectionEnvManager)</h2>
<ul>
<li style="color: #555753;">✓ Successfully initiated</li>
<li style="color: #555753;">✓ File path</li>
<li style="color: #555753;">✓ Set file path</li>
<li style="color: #555753;">✓ Reset file path</li>
<li style="color: #555753;">✓ File exists</li>
<li style="color: #555753;">✓ Has is true</li>
<li style="color: #555753;">✓ Has is false</li>
<li style="color: #555753;">✓ Get</li>
<li style="color: #555753;">✓ Get with default</li>
<li style="color: #555753;">✓ Set</li>
<li style="color: #555753;">✓ Set many</li>
<li style="color: #555753;">✓ Has is true</li>
<li style="color: #555753;">✓ Get with default</li>
<li style="color: #555753;">✓ Get</li>
<li style="color: #555753;">✓ Save</li>
<li style="color: #555753;">✓ New from path</li>
<li style="color: #555753;">✓ New from path with new app key</li>
<li style="color: #555753;">✓ Set</li>
<li style="color: #555753;">✓ Successfully initiated</li>
<li style="color: #555753;">✓ File path</li>
<li style="color: #555753;">✓ Set file path</li>
<li style="color: #555753;">✓ Reset file path</li>
<li style="color: #555753;">✓ File exists</li>
</ul>
</body>
</html>

0 comments on commit 4aaa145

Please sign in to comment.