You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
418 B
19 lines
418 B
<?php |
|
|
|
/** |
|
* Find the auto loader file |
|
*/ |
|
$files = [ |
|
__DIR__ . '/../vendor/autoload.php', |
|
__DIR__ . '/../../vendor/autoload.php', |
|
__DIR__ . '/../../../vendor/autoload.php', |
|
__DIR__ . '/../../../../vendor/autoload.php', |
|
]; |
|
|
|
foreach ($files as $file) { |
|
if (file_exists($file)) { |
|
$loader = require $file; |
|
$loader->addPsr4('Ratchet\\RFC6455\\Test\\', __DIR__); |
|
break; |
|
} |
|
}
|
|
|