This project integrate Slim 3 skeleton and SB Admin 2 template.
$ composer create-project kevin830222/slim3-sbadmin-skeleton my-app
$ cd my-app$ npm install$ gulp$ php -S 0.0.0.0:8888 -t public public/index.php- Browse to http://localhost:8888
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
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