GitXplorerGitXplorer
z

boilerplate-slim3

public
23 stars
10 forks
0 issues

Commits

List of commits on branch master.
Unverified
d390afc00fe9a2b3abf456715bacfecd63dc74bd

potential security vulnerabilities

zzhiephie committed 4 years ago
Verified
f6b8d283e2a085093c7f630e55cc8437b6fc659a

Update README.md

zzhiephie committed 7 years ago
Unverified
af53114f93e28e9f947d22e6aca21c3901ec7b6e

add widget

committed 8 years ago
Unverified
f814e35a46546f51fdfe4e856acc1065d71d09f8

Update README.md

committed 8 years ago
Unverified
d67d055d6291a7c2a97242f72bbfddb7f262457f

style

committed 8 years ago
Unverified
4f2f30b8d34e27c9f62b59cba859b64cf776a5de

update using facebook/graph-sdk

zzhiephie committed 8 years ago

README

The README file for this repository.

Boilerplate for Slim Framework 3 Build Status Donate

Boilerplate for getting started with Slim Framework

Use this skeleton application to quickly setup and start working on a new Slim Framework 3 application. This application uses the latest Slim 3.

Requirements:

  • PHP 5.5 or newer
  • PDO PHP Extension

Features

  • PHP View
  • Twig Template Engine
  • Eloquent Laravel
  • Sentinel Authentication provider
  • Include SDK Facebook
  • Logger Monolog
  • AdminLTE soon
1 Manual Install

You can manually install by cloning this repo or download the zip file from this repo, and run composer install.

$ git clone https://github.com/zhiephie/boilerplate-slim3.git
$ composer install
2 Alternative install via composer
$ composer create-project --no-interaction --stability=dev zhiephie/boilerplate-slim3 [folder-name]
3 Setup Permission

After composer finished install the dependencies, you need to change file and folder permission.

$ chmod -R 777 storage
$ chmod 666 config/database.php
4 Configuration Database and Setting App

Configuration file located in config, edit the database.php, setting.php

5 Run php migrate
$ php migrate
6 Run Server php -S localhost:8000 -t public
$ php -S localhost:8000 -t public

That's it! Now go build something cool.