Skip to content

Instantly share code, notes, and snippets.

@maxparm
Created June 17, 2011 19:03
Show Gist options
  • Save maxparm/1032055 to your computer and use it in GitHub Desktop.
Save maxparm/1032055 to your computer and use it in GitHub Desktop.
LITHIUM - bootstrap libraries
<?php
//...
/**
* Add the Lithium core library. This sets default paths and initializes the autoloader. You
* generally should not need to override any settings.
*/
Libraries::add('lithium');
/**
* Add the application. You can pass a `'path'` key here if this bootstrap file is outside of
* your main application, but generally you should not need to change any settings.
*/
Libraries::add('app', array('default' => true));
/**
* Add the new module called "admin"
*/
Libraries::add('admin');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment