Serve the web.
Micro is a absolute barebone CMS (In case you need something full-stack check out great open source alternatives or OpalCMS).
Micro is able to do the simplest tasks for a cms.
Micro is build on Silex (the micro version of Symphony) And is fully extendable. All dependancies come via Composer.
There will be a simple installer soon( when the CMS is usable ).
Setting up your settings:
php micro.php settings
Create a backup from your current database:
php micro.php backup
For templates we are using Twig, go out there and read the docs. All needed vars are parsed into the template so you can use them there.
Our advise is simply start of with the default themes, modify them the way you like.
Set up an .htaccess file into the root folder.
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>