mirror of
https://github.com/stan220/WildcardEventDispatcher.git
synced 2026-09-08 18:28:47 +00:00
10 lines
260 B
PHP
10 lines
260 B
PHP
<?php
|
|
|
|
if (file_exists($file = __DIR__.'/../vendor/autoload.php')) {
|
|
$loader = require_once $file;
|
|
} else {
|
|
throw new RuntimeException('Install dependencies to run test suite.');
|
|
}
|
|
|
|
$loader->add('Jmikola\\WildcardEventDispatcher', __DIR__.'/../src');
|