Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-05-14 18:07:39 +0400
committerMichal Čihař <mcihar@suse.cz>2012-05-14 18:07:39 +0400
commit44d4a56c20cec232cd0eeb6feb48e4d2137e1783 (patch)
tree85d80ba1d47e7946c4e1dd0ffde250b03ab8571e /test
parente96a4379b088069be53a674c64de8e28035b4061 (diff)
Add sample config file
Diffstat (limited to 'test')
-rw-r--r--test/test_data/config.inc.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test_data/config.inc.php b/test/test_data/config.inc.php
new file mode 100644
index 0000000000..86e6f6958b
--- /dev/null
+++ b/test/test_data/config.inc.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Minimal config file for test
+ */
+$i = 0;
+
+/* Server: localhost [1] */
+$i++;
+$cfg['Servers'][$i]['verbose'] = '';
+$cfg['Servers'][$i]['host'] = 'localhost';
+$cfg['Servers'][$i]['port'] = '';
+$cfg['Servers'][$i]['socket'] = '';
+$cfg['Servers'][$i]['connect_type'] = 'tcp';
+$cfg['Servers'][$i]['extension'] = 'mysqli';
+$cfg['Servers'][$i]['auth_type'] = 'cookie';