Install

Tlumx framework, packages and other solutions are available on GitHub and can be installed via Composer dependency manager

If Composer is not already installed, you can install the Composer by following instructions on the getcomposer.org. Also, on Linux or Mac, you can download Composer and install it globally using the next commands:

curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer

The easiest way to create a new Tlumx Framework project is using TlumxSkeletonApplication project as a base, use next command:

$ php composer.phar create-project tlumx/skeleton-application [app-name]

Where [app-name] is directory name for creation application

Once installed, you can run it with PHP's built-in web server:

$ cd [app-name]; php -S localhost:8080 -t public public/index.php

For more information, read the documentation