aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2020-08-27 20:43:10 -0400
committerThedro Neely <thedroneely@gmail.com>2020-08-27 20:43:10 -0400
commit64ef1a47387b0d0ded17d5f4d0723b8211012769 (patch)
tree3b4473e53633d45cd6a6fc0bd16087df45250423 /config.php
parent616efa07fb7720456bcb3b2b445d61333c1d45b1 (diff)
downloadedwinmattiacci.com-64ef1a47387b0d0ded17d5f4d0723b8211012769.tar.gz
edwinmattiacci.com-64ef1a47387b0d0ded17d5f4d0723b8211012769.tar.bz2
edwinmattiacci.com-64ef1a47387b0d0ded17d5f4d0723b8211012769.zip
AppConfigBuild.php -> config.php
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',
+ ]
+];