mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 16:54:05 +00:00
Remove vlucas/phpdotenv dependency and make it work with newer versions.
This commit is contained in:
parent
32f622f5ab
commit
8771235128
2 changed files with 5 additions and 2 deletions
|
|
@ -18,7 +18,6 @@
|
||||||
"stancl/virtualcolumn": "^1.0"
|
"stancl/virtualcolumn": "^1.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"vlucas/phpdotenv": "^5.0",
|
|
||||||
"laravel/framework": "^6.0|^7.0|^8.0",
|
"laravel/framework": "^6.0|^7.0|^8.0",
|
||||||
"orchestra/testbench-browser-kit": "^4.0|^5.0|^6.0",
|
"orchestra/testbench-browser-kit": "^4.0|^5.0|^6.0",
|
||||||
"league/flysystem-aws-s3-v3": "~1.0",
|
"league/flysystem-aws-s3-v3": "~1.0",
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,11 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase
|
||||||
protected function getEnvironmentSetUp($app)
|
protected function getEnvironmentSetUp($app)
|
||||||
{
|
{
|
||||||
if (file_exists(__DIR__ . '/../.env')) {
|
if (file_exists(__DIR__ . '/../.env')) {
|
||||||
|
if (method_exists(\Dotenv\Dotenv::class, 'createImmutable')) {
|
||||||
\Dotenv\Dotenv::createImmutable(__DIR__ . '/..')->load();
|
\Dotenv\Dotenv::createImmutable(__DIR__ . '/..')->load();
|
||||||
|
} else {
|
||||||
|
\Dotenv\Dotenv::create(__DIR__ . '/..')->load();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$app['config']->set([
|
$app['config']->set([
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue