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: 1
Forks: 97
Language:HTML
Type:project
pkg:composer/kevin830222/slim3-sbadmin-skeleton
Requires
- monolog/monolog: ^1.13
- slim/flash: ^0.1.0
- slim/http-cache: ^0.3.0
- slim/slim: ^3.0
- slim/twig-view: ^2.0
Requires (Dev)
- phpunit/phpunit: ^5.0
This package is not auto-updated.
Last update: 2025-11-09 00:37:15 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:
$ cd my-app$ npm install$ gulp$ php -S 0.0.0.0:8888 -t public public/index.php- Browse to http://localhost:8888
Key directories
app: Application codeapp/src: All class files within theAppnamespaceapp/templates: Twig template filescache/twig: Twig's Autocreated cache fileslog: Log filespublic: Webserver rootvendor: Composer dependencies
Key files
public/index.php: Entry point to applicationapp/settings.php: Configurationapp/dependencies.php: Services for Pimpleapp/middleware.php: Application middlewareapp/routes.php: All application routes are hereapp/src/Action/HomeAction.php: Action class for the home pageapp/templates/home.twig: Twig template file for the home page