Install with composer

composer require makiavelo/quark

Or update dependencies in composer.json

"require": {
    "makiavelo/quark": "dev-master"
}

Install with single file

The repository contains a phar file which can be included directly to avoid using composer. The phar can be found here: /phar/quark.phar

Setup

Create a .htaccess file in your document root and make sure the server has rewrites enabled (apache, nginx, etc.)

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]