Skip to content

Instantly share code, notes, and snippets.

@aasumitro
Created February 5, 2018 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aasumitro/c0d64a779daf0baa7a3a09ad51649fb6 to your computer and use it in GitHub Desktop.
Save aasumitro/c0d64a779daf0baa7a3a09ad51649fb6 to your computer and use it in GitHub Desktop.
bootsrap app.php slim 3
<?php
/*
|----------------------------------------------------
| Register The Auto Loader
|----------------------------------------------------
*/
require __DIR__ . ('/../vendor/autoload.php');
/*
|----------------------------------------------------
| Slim Framework Setting |
|----------------------------------------------------
*/
$settings = require __DIR__ . ('/../config/settings.php');
$app = new \Slim\App($settings);
/*
|----------------------------------------------------
| File dependencies |
|----------------------------------------------------
*/
require __DIR__ . ('/../config/dependencies.php');
/*
|----------------------------------------------------
| File Router |
|----------------------------------------------------
*/
require __DIR__ . ('/../app/routes.php');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment