Skip to content
Snippets Groups Projects
Select Git revision
  • 3db5ea65abdc8e38af51c48316787054f5304b27
  • master default protected
  • sygal_token
  • origin/trunk
  • origin/3.0.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.0.1
  • 1.0.0
10 results

Module.php

Blame
  • 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.');
    }