mirror of
https://github.com/nextcloud/server.git
synced 2025-07-31 20:54:50 +00:00

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> # Conflicts: # apps/settings/lib/SetupChecks/PhpOpcacheSetup.php
16 lines
225 B
PHP
16 lines
225 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
$CONFIG = [
|
|
'supportedDatabases' => [
|
|
'sqlite',
|
|
'mysql',
|
|
'pgsql',
|
|
'oci',
|
|
],
|
|
];
|