aboutsummaryrefslogtreecommitdiff
path: root/AppConfigStaging.php
diff options
context:
space:
mode:
Diffstat (limited to 'AppConfigStaging.php')
-rw-r--r--AppConfigStaging.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/AppConfigStaging.php b/AppConfigStaging.php
new file mode 100644
index 0000000..3e690b5
--- /dev/null
+++ b/AppConfigStaging.php
@@ -0,0 +1,20 @@
+<?php
+
+return [
+ 'database' => [
+ 'name' => 'edwinmattiacci',
+ 'username' => 'pgsql_username',
+ 'password' => 'pgsql_password',
+ 'connection' => 'pgsql:',
+ 'options' => [
+ PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
+ ]
+ ],
+
+ 'mail' => [
+ 'host' => 'smtp.mail.yahoo.com',
+ 'port' => '465',
+ 'username' => 'email_username',
+ 'password' => 'email_password',
+ ]
+];