mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
14 lines
224 B
PHP
14 lines
224 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',
|
|
],
|
|
];
|