summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Burton <phil@d3r.com>2016-05-12 15:59:16 +0100
committerPhil Burton <phil@d3r.com>2016-05-12 15:59:16 +0100
commit077f28cdafe89fbaf500ef911a3921773f948572 (patch)
tree26e1b709fb9bb9b9070e22f9deb441018462a643
parentfaf2116638cce5c2767949e380aebca9a241978d (diff)
Add a config folder and config php fileHEADmaster
-rw-r--r--config/app.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/app.php b/config/app.php
new file mode 100644
index 0000000..6f128a7
--- /dev/null
+++ b/config/app.php
@@ -0,0 +1,8 @@
+<?php
+
+$config = [
+ 'site' => [
+ 'url' => "exampleurl.com",
+ 'name' => "Example Name"
+ ]
+];