Created
October 29, 2012 18:54
-
-
Save igormx/3975699 to your computer and use it in GitHub Desktop.
Registring a namespace with the autoloader in ZF2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Zend Framework (http://framework.zend.com/) | |
* | |
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository | |
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | |
* @license http://framework.zend.com/license/new-bsd New BSD License | |
*/ | |
/** | |
* This autoloading setup is really more complicated than it needs to be for most | |
* applications. The added complexity is simply to reduce the time it takes for | |
* new developers to be productive with a fresh skeleton. It allows autoloading | |
* to be correctly configured, regardless of the installation method and keeps | |
* the use of composer completely optional. This setup should work fine for | |
* most users, however, feel free to configure autoloading however you'd like. | |
*/ | |
// Composer autoloading | |
if (file_exists('vendor/autoload.php')) { | |
$loader = include 'vendor/autoload.php'; | |
} | |
// Support for ZF2_PATH environment variable or git submodule | |
if (($zf2Path = getenv('ZF2_PATH') ?: (is_dir('vendor/ZF2/library') ? 'vendor/ZF2/library' : false)) !== false) { | |
if (isset($loader)) { | |
$loader->add('Zend', $zf2Path . '/Zend'); | |
} else { | |
include $zf2Path . '/Zend/Loader/AutoloaderFactory.php'; | |
Zend\Loader\AutoloaderFactory::factory(array( | |
'Zend\Loader\StandardAutoloader' => array( | |
'autoregister_zf' => true, | |
'namespaces' => array( | |
'ZendSearch' => 'vendor/zolex/zendsearch/library/ZendSearch', | |
) | |
) | |
)); | |
} | |
} | |
if (!class_exists('Zend\Loader\AutoloaderFactory')) { | |
throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment