Skip to content

Instantly share code, notes, and snippets.

@Rayne
Last active August 29, 2015 14:06
Show Gist options
  • Save Rayne/a88e40ffb47a93f22381 to your computer and use it in GitHub Desktop.
Save Rayne/a88e40ffb47a93f22381 to your computer and use it in GitHub Desktop.
Autoloading with FatFreeFramework and Composer
<?php
$root = dirname(__DIR__);
require_once $root . '/vendor/autoload.php';
$f3 = Base::instance();
/** FRAMEWORK *************************************************************************************/
$f3->set('AUTOLOAD', $root . '/app/Classes/');
// …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment