lvis/slim2app

A Slim 2 Framework skeleton application

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Language:HTML

pkg:composer/lvis/slim2app

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

This package is not auto-updated.

Last update: 2025-09-28 10:21:35 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