Skip to content

Instantly share code, notes, and snippets.

@duikb00t
Created April 17, 2014 12:15
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 duikb00t/10978729 to your computer and use it in GitHub Desktop.
Save duikb00t/10978729 to your computer and use it in GitHub Desktop.
autoloading
<?php
require_once __DIR__.'/../vendor/autoload.php';
$app = require __DIR__.'/../src/app.php';
require __DIR__.'/../config/prod.php';
require __DIR__.'/../src/controllers.php';
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment