Legato is a web application framework that seats on the shoulders of giants like symfony and laravel, when you need a lightweight framework for PHP development.
php 7.1 and above composer
$ composer create-project legato/legato blog
$ cd blog
$ composer dumpautoload
The entry point for Legato framework is the index.php file inside of public directory, off course you're free to change this according to your need. You may need to create an entry in /etc/httpd/vhosts (for apache users) similar to the following:
<VirtualHost *:80>
DocumentRoot /var/www/html/blog
ServerName example.com
</VirtualHost>
Restart Apache
$ service httpd restsart
Navigatte to http://example.com, you should be able to view the app.
Legato documentation will be released soon.
Thank you for considering contributing to the Legato framework! Feel free to create a pull request. The contribution guide will be released soon.
If you discover a security vulnerability within Legato, please send an e-mail to Terry Ogbemudia Osayawe via [email protected]. All security vulnerabilities will be promptly addressed.
The Legato framework is open-sourced software licensed under the MIT license.