diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-12-13 21:15:46 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-01-10 11:29:13 +0100 |
commit | 37e2bc4f55eed597cf61b9513df097d1850691e6 (patch) | |
tree | 267aedb4ac468bce9d63125a171d028611d45388 /public/index.php | |
parent | 8fb7768af3f43c524f91d80c46c99db0d88e40ab (diff) |
Add composer and routes
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..1cd408e --- /dev/null +++ b/public/index.php @@ -0,0 +1,8 @@ +<?php + +use FlatFileForms\App; + +require_once dirname(__DIR__) . '/vendor/autoload.php'; + +new App(); + |