You need to sign in or sign up before continuing.
Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
init_autoloader.php 403 B
<?php
if (! file_exists(__DIR__ . '/vendor/autoload.php')) {
throw new RuntimeException('File vendor/autoload.php not found. Run `php composer.phar install`.');
}
require_once __DIR__ . '/vendor/autoload.php';
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.');
}