set('database.default', 'testing'); $app['config']->set('database.connections.testing', [ 'driver' => 'sqlite', 'database' => ':memory:', 'prefix' => '', ]); // Stub external dependencies not available in test environment if (! class_exists(\Plug\Cdn\CdnManager::class)) { $app->bind(\Plug\Cdn\CdnManager::class, fn () => new class {}); } } }