Skip to content

Instantly share code, notes, and snippets.

@jelovac
Created November 21, 2017 08:15
Show Gist options
  • Save jelovac/eea325e6a92b96f2feac71b91f14f43f to your computer and use it in GitHub Desktop.
Save jelovac/eea325e6a92b96f2feac71b91f14f43f to your computer and use it in GitHub Desktop.
Include composer autoloaded classes in Yii 1 class map
// Include composer in Yii class map
$composerAutoloader = require_once "components/composer/vendor/autoload.php";
$composerClassMap = $composerAutoloader->getClassMap();
Yii::$classMap = array_merge(Yii::$classMap, $composerClassMap);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment