aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'config.php')
-rw-r--r--config.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/config.php b/config.php
new file mode 100644
index 0000000..0e83ebe
--- /dev/null
+++ b/config.php
@@ -0,0 +1,21 @@
+<?php
+
+return [
+ 'database' => [
+ 'name' => 'pgsql_database',
+ 'username' => 'pgsql_username',
+ 'password' => 'pgsql_password',
+ 'connection' => 'pgsql:',
+ 'options' => [
+ PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
+ ]
+ ],
+
+ 'mail' => [
+ 'host' => 'email_host',
+ 'port' => 'email_port',
+ 'name' => 'email_name',
+ 'username' => 'email_username',
+ 'password' => 'email_password',
+ ]
+];