lvis / slim3app
A Slim 3 Framework skeleton application
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lvis/slim3app
Requires
- php: >=5.5.0
 - monolog/monolog: ^1.17
 - slim/php-view: ^2.0
 - slim/slim: ^3.1
 
Requires (Dev)
- phpunit/phpunit: >=4.8 < 6.0
 
This package is not auto-updated.
Last update: 2025-10-25 07:39:03 UTC
README
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.
Install the Application
Run this command from the directory in which you want to install your new application.
php composer.phar create-project lvis/slim3app [app-name]
- Replace 
[app-name]with the desired directory name for your new application. - Ensure 
logs/andtemplates/cacheare web writeable. 
You can run application in development with this command:
php -S localhost:8080 index.php
or composer one:
php composer.phar start
Run this command to run the test suite
php composer.phar test