You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'connections' => [
// Example SQLite connection:
'sqlite' => new \Cycle\Database\Config\SQLiteDriverConfig(
connection: new \Cycle\Database\Config\SQLite\DsnConnectionConfig(
// see https://www.php.net/manual/pdo.construct.php, DSN for connection syntax
dsn: 'sqlite:runtime/database.db'
)
),
],
Nice to have meta-value like
'connections' => new ConfigurationNeeded([
'sqlite' => '...'
])
When config-plugin meets this value it may throw error that application is not configured properly.
Additionally it may prompt values during composer install phase
The text was updated successfully, but these errors were encountered:
For example: https://github.com/yiisoft/yii-cycle/blob/master/config/params.php#L35
'connections' => []
needs to be configured
Nice to have meta-value like
When config-plugin meets this value it may throw error that application is not configured properly.
Additionally it may prompt values during
composer install
phaseThe text was updated successfully, but these errors were encountered: