lvis/slim2app

A Slim 2 Framework skeleton application

dev-master 2017-10-12 10:23 UTC

This package is not auto-updated.

Last update: 2024-04-28 02:21:46 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/ and templates/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