mxmbsocket/tests/bootstrap.php
Chris Boden f766278a14 Passing Tests
Finally able to do incomplete tests.  Ratchet passes (finally).
2012-01-06 22:00:35 -05:00

11 lines
442 B
PHP

<?php
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'SplClassLoader.php');
$app = new SplClassLoader('Ratchet', __DIR__);
$app->register();
$app = new SplClassLoader('Ratchet', dirname(__DIR__) . DIRECTORY_SEPARATOR . 'lib');
$app->register();
$app = new SplClassLoader('Guzzle', dirname(__DIR__) . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'guzzle' . DIRECTORY_SEPARATOR . 'src');
$app->register();