Skip to content
Snippets Groups Projects
Select Git revision
  • fa79569dd2ebfa718bcacd950d1b18b9e2344ba3
  • master default
  • php84
  • 7.x
  • 6.x
  • 6.3.3
  • 6.3.2
  • 6.3.1
  • 6.3.0
  • 6.2.3
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.1.0
  • 6.0.9
  • 6.0.8
  • 6.0.7
  • 6.0.6
  • 6.0.5
  • 6.0.4
  • 6.0.3
  • 6.0.2
  • 6.0.1
  • 6.0.0
  • 0.0.7
25 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.');
    }