diff --git a/composer.json b/composer.json index 6d3aac7..0b80f6a 100644 --- a/composer.json +++ b/composer.json @@ -15,30 +15,36 @@ { "name": "Pavol Perdík", "email": "pavol.perdik@brackets.sk", - "homepage": "https://www.brackets.sk/en", + "homepage": "https://www.brackets.sk", "role": "Developer" }, { "name": "David Běhal", "email": "david.behal@brackets.sk", - "homepage": "https://www.brackets.sk/en", + "homepage": "https://www.brackets.sk", + "role": "Developer" + }, + { + "name": "Richard Dominik", + "email": "richard.dominik@brackets.sk", + "homepage": "https://www.brackets.sk", "role": "Developer" } ], "require": { - "php": "^7.2", - "illuminate/container": "~6.0", - "illuminate/contracts": "~6.0", - "illuminate/database": "~6.0", - "illuminate/support": "~6.0", - "illuminate/console": "~6.0", + "php": "^7.2.5", + "illuminate/container": "^6.0|^7.0", + "illuminate/contracts": "^6.0|^7.0", + "illuminate/database": "^6.0|^7.0", + "illuminate/support": "^6.0|^7.0", + "illuminate/console": "^6.0|^7.0", "brackets/admin-ui": "^4.0", "brackets/admin-listing": "^3.0", "brackets/translatable": "^2.0" }, "require-dev": { "orchestra/testbench": "~4.0", - "phpunit/phpunit": "~8.0", + "phpunit/phpunit": "^8.5", "doctrine/dbal": "~2.5.13|^2.6", "mockery/mockery": "^1.0" }, diff --git a/tests/TestCase.php b/tests/TestCase.php index 8cbd98a..fd22760 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -64,9 +64,9 @@ protected function getEnvironmentSetUp($app) 'driver' => 'pgsql', 'host' => 'testing', 'port' => '5432', - 'database' => 'homestead', - 'username' => 'homestead', - 'password' => 'secret', + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', 'bestsecret'), 'charset' => 'utf8', 'prefix' => '', 'schema' => 'public',