musaid / slim3-skeleton
Simple Slim Framework 3 skeleton with Twig & Monolog.
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- monolog/monolog: ^1.17
- slim/flash: ^0.1.0
- slim/slim: ^3.0
- slim/twig-view: ^2.0
This package is not auto-updated.
Last update: 2024-11-13 20:21:29 UTC
README
This is a simple skeleton project for Slim 3 that includes Twig, Flash messages and Monolog [Original Author: Rob Allen (https://github.com/akrabat)].
Create your project:
$ composer create-project -n -s stable musaid/slim3-skeleton my-app
Run it:
$ cd my-app
$ 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 theApp
namespaceapp/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