Installing

Installing via Composer

To download Solital, use the command below:

composer create-project solital/solital project

It only takes a few lines of code to get started:

Course::get('/', function() {
    return 'Hello world';
});

Running

To execute the project, use the built-in PHP server or create a virtual host:

php -S localhost:8000 -t public/

What to see next?


Built with MkDocs.