PHP Classes

File: test/bootstrap.php

Recommend this page to a friend!
  Classes of Artur Graniszewski   ZEUS for PHP   test/bootstrap.php   Download  
File: test/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: ZEUS for PHP
Manage the execution of multiple parallel tasks
Author: By
Last change: Fixed phpunit bootstrap path - part III
Fixed phpunit bootstrap path - part II
Fixed phpunit bootstrap path
Implemented lazy loading of Server Service
Date: 6 years ago
Size: 219 bytes
 

Contents

Class file image Download
<?php

chdir
(dirname(__DIR__));
if (
file_exists('vendor/autoload.php')) {
   
$loader = require 'vendor/autoload.php';
} else {
   
$loader = require '../../../vendor/autoload.php';
}
$loader->add('ZeusTest', __DIR__);