Er is één groot probleem met de methode waar je voor gaat:
U hebt geen configuratieobject geïnitialiseerd. Lumen heeft standaard geen traditionele configuratieobjectset, totdat u een config
. aanmaakt map in uw hoofdmap.
Zoals geschreven in de Lumen-configuratiedocumenten:
Alle configuratie-opties voor het Lumen-framework worden opgeslagen in het .env-bestand.
De aanpak die u kiest, vereist het traditionele configuratieobject zoals gebruikt in Laravel.
Om dat object en uw nieuwe retail_db
te krijgen databaseverbinding werkt:
- Maak een
config
map in uw projecthoofdmap - Kopieer het bestand
vendor/laravel/lumen-framework/config/database.php
naar deze configuratiemap - Initialiseer het databaseconfiguratieobject in uw
bootstrap/app.php
met$app->configure('database');
(zet het op regel 28)
Je mappenstructuur ziet er nu als volgt uit:
├── app
├── bootstrap
├── config
└── database.php
├── database
├── public
├── resources
├── storage
├── tests
└── vendor
Natuurlijk kun je die verbindingen die je niet nodig hebt verwijderen uit de array met verbindingen in app/config/database.php
door ze te becommentariëren of volledig te verwijderen.
app/config/database.php
'connections' => [
/*'testing' => [
'driver' => 'sqlite',
'database' => ':memory:',
],*/
'sqlite' => [
'driver' => 'sqlite',
'database' => env('DB_DATABASE', base_path('database/database.sqlite')),
'prefix' => env('DB_PREFIX', ''),
],
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', 3306),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => env('DB_CHARSET', 'utf8'),
'collation' => env('DB_COLLATION', 'utf8_unicode_ci'),
'prefix' => env('DB_PREFIX', ''),
'timezone' => env('DB_TIMEZONE', '+00:00'),
'strict' => env('DB_STRICT_MODE', false),
],
]
Uw bootstrap/app.php met de wijzigingen:
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| Here we will load the environment and create the application instance
| that serves as the central piece of this framework. We'll use this
| application as an "IoC" container and router for this framework.
|
*/
$app = new Laravel\Lumen\Application(
realpath(__DIR__.'/../')
);
//$app->withFacades();
// $app->withEloquent();
$app->configure('database');
Nu kun je de code gebruiken die je al hebt in je routes.php
.
Uw retail_db
verwijderen verbinding, zet het gewoon op null
:
$config->set('database.connections.retail_db', null);