Translated using Weblate (Russian)
[phpmyadmin.git] / app / vendor_config.php
blobd1889ba39ee90f3215eaca7e1eb101c157a45db8
1 <?php
2 /**
3 * File for vendor customization, you can change here paths or some behaviour,
4 * which vendors such as Linux distributions might want to change.
6 * For changing this file you should know what you are doing. For this reason
7 * options here are not part of normal configuration.
8 */
10 declare(strict_types=1);
12 if (! defined('PHPMYADMIN')) {
13 exit;
16 return [
17 /**
18 * Path to vendor autoload file. Useful when you want to have vendor dependencies somewhere else.
20 'autoloadFile' => ROOT_PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php',
22 /**
23 * Directory where cache files are stored.
25 'tempDir' => ROOT_PATH . 'tmp' . DIRECTORY_SEPARATOR,
27 /**
28 * Path to changelog file, can be gzip compressed.
29 * Useful when you want to have documentation somewhere else, e.g. /usr/share/doc.
31 'changeLogFile' => ROOT_PATH . 'ChangeLog',
33 /**
34 * Path to license file. Useful when you want to have documentation somewhere else, e.g. /usr/share/doc.
36 'licenseFile' => ROOT_PATH . 'LICENSE',
38 /**
39 * Directory where SQL scripts to create/upgrade configuration storage reside.
41 'sqlDir' => ROOT_PATH . 'resources' . DIRECTORY_SEPARATOR . 'sql' . DIRECTORY_SEPARATOR,
43 /**
44 * Filename of a configuration file.
46 'configFile' => ROOT_PATH . 'config.inc.php',
48 /**
49 * Filename of custom header file.
51 'customHeaderFile' => ROOT_PATH . 'config.header.inc.php',
53 /**
54 * Filename of custom footer file.
56 'customFooterFile' => ROOT_PATH . 'config.footer.inc.php',
58 /**
59 * Default value for check for version upgrades.
61 'versionCheckDefault' => true,
63 /**
64 * Path to files with compiled locales (*.mo)
66 'localePath' => ROOT_PATH . 'resources' . DIRECTORY_SEPARATOR . 'locale' . DIRECTORY_SEPARATOR,
68 /**
69 * Define the cache directory for routing cache and other cache files
71 'cacheDir' => ROOT_PATH . 'app' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR,
73 /**
74 * Suffix to add to the phpMyAdmin version
76 'versionSuffix' => '',