kevin830222/slim3-sbadmin-skeleton

Slim Framework 3 skeleton with Twig & Monolog and SB Admin 2

Installs: 21

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 102

Language:HTML

Type:project

dev-master 2016-02-28 20:30 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:50:39 UTC


README

This project integrate Slim 3 skeleton and SB Admin 2 template.

Create your project:

$ composer create-project kevin830222/slim3-sbadmin-skeleton my-app

Run it:

  1. $ cd my-app
  2. $ npm install
  3. $ gulp
  4. $ php -S 0.0.0.0:8888 -t public public/index.php
  5. Browse to http://localhost:8888

Key directories

  • app: Application code
  • app/src: All class files within the App namespace
  • app/templates: Twig template files
  • cache/twig: Twig's Autocreated cache files
  • log: Log files
  • public: Webserver root
  • vendor: Composer dependencies

Key files

  • public/index.php: Entry point to application
  • app/settings.php: Configuration
  • app/dependencies.php: Services for Pimple
  • app/middleware.php: Application middleware
  • app/routes.php: All application routes are here
  • app/src/Action/HomeAction.php: Action class for the home page
  • app/templates/home.twig: Twig template file for the home page