lvis / slim2app
A Slim 2 Framework skeleton application
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=5.6.0
- erusev/parsedown: dev-master
- monolog/monolog: 1.*
- slim/slim: 2.*
- slim/views: 0.*
- twig/twig: 1.*
This package is not auto-updated.
Last update: 2025-03-02 07:28:10 UTC
README
A Slim 2 Framework skeleton application was built for Composer and makes setting up a new application quick and easy.
Install the Application
Run this command from the directory in which you want to install your new Slim Framework application.
php composer.phar create-project lvis/slim2app [app-name]
- Replace
[app-name]
with the desired directory name for your new application. - Ensure
logs/
andtemplates/cache
are web writeable.
You can run application in development with this command:
php -S localhost:8080 index.php
or composer one:
php composer.phar start