Branch | Status | Coverage |
---|---|---|
master | ||
v2 |
- PHP >= 7.1
- Composer (dependency management)
- Twig (html templates)
- Flight (php framework)
- PHPUnit (testing)
- Run
composer install
. - Move everything to your webserver root directory.
- Ensure that users cannot access directories outside of /public.
- For Apache, use the following rewrite rules:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
Note: If using vhosts, you should rewrite to %{DOCUMENT_ROOT}/index.php
rather than just index.php
.
License: MIT
Read file LICENSE.