library slim3app
A Slim 3 Framework skeleton application
lvis/slim3app
A Slim 3 Framework skeleton application
- Sunday, October 8, 2017
- by lvis
- Repository
- 1 Watchers
- 0 Stars
- 1 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
slim3app
A Slim 3 application was built for Composer and makes setting up a new application quick and easy.
This application uses the latest Slim 3 with the PHP-View template renderer. It also uses the Monolog logger., (*1)
Install the Application
Run this command from the directory in which you want to install your new application., (*2)
php composer.phar create-project lvis/slim3app [app-name]
- Replace
[app-name]
with the desired directory name for your new application.
- Ensure
logs/
and templates/cache
are web writeable.
You can run application in development with this command:, (*3)
php -S localhost:8080 index.php
or composer one:, (*4)
php composer.phar start
Run this command to run the test suite, (*5)
php composer.phar test