SYSTEMPATH, * 'App' => APPPATH * ]; * * @var array|string> */ public $psr4 = [ APP_NAMESPACE => APPPATH, // For custom app namespace 'Config' => APPPATH . 'Config', 'CodeIgniter\\Settings' => APPPATH . 'ThirdParty/settings-2.2.0/src', 'CodeIgniter\\Shield' => APPPATH . 'ThirdParty/shield-1.0.3/src', ]; /** * ------------------------------------------------------------------- * Class Map * ------------------------------------------------------------------- * The class map provides a map of class names and their exact * location on the drive. Classes loaded in this manner will have * slightly faster performance because they will not have to be * searched for within one or more directories as they would if they * were being autoloaded through a namespace. * * Prototype: * $classmap = [ * 'MyClass' => '/path/to/class/file.php' * ]; * * @var array */ public $classmap = []; /** * ------------------------------------------------------------------- * Files * ------------------------------------------------------------------- * The files array provides a list of paths to __non-class__ files * that will be autoloaded. This can be useful for bootstrap operations * or for loading functions. * * Prototype: * $files = [ * '/path/to/my/file.php', * ]; * * @var list */ public $files = [ APPPATH . 'ThirdParty/shield-1.0.3/src/Helpers/auth_helper.php', APPPATH . 'ThirdParty/shield-1.0.3/src/Helpers/email_helper.php' ]; /** * ------------------------------------------------------------------- * Helpers * ------------------------------------------------------------------- * Prototype: * $helpers = [ * 'form', * ]; * * @var list */ public $helpers = ['auth', 'setting']; }