Skip to content
Fery Wardiyanto edited this page Oct 13, 2016 · 2 revisions

Welcome to the slim-framework wiki!

LICENSE VERSION Build Status Coveralls Code Climate Code Climate SensioLabs Insight

Requirements

  • PHP 5.5.x or newer, since Slim 3 depends on it.
  • HTTP Server, e.g. NginX or Apache either.
  • MySQL Server 5.x or newer for main database.

Installation

I've make this package available to install via composer create-project so make sure you've already have composer installed globally in your system.

$ composer create-project dev projek-xyz/slim-skeleton my-app --prefer-dist

then enter my-app directory you just create and start the server.

$ cd my-app
$ php -S localhost:8888 -t public

Now, you should open http://localhost:8888 in your favorite web browser.

Clone this wiki locally