rfc6455/tests/bootstrap.php
2015-03-16 00:22:38 -04:00

19 lines
345 B
PHP

<?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)) {
require $file;
break;
}
}