From directory in which you want to install your new application, run this command:
composer create-project iagapie/slim-skeleton [app-name]
Replace [app-name]
with name of your new application. You'll want to:
- Point your virtual host document root to your new application's
public/
directory. - Ensure
var/logs/
andvar/cache/
is writable.
To run the application in development, you can run these commands
cd [app-name]
composer serve
To run the test suite:
composer test
The MIT License (MIT). Please see LICENSE for more information.