2011-09-04 00:29:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
error_reporting(E_ALL | E_STRICT);
|
|
|
|
|
|
|
|
// register silently failing autoloader
|
|
|
|
spl_autoload_register(function($class) {
|
|
|
|
if (0 === strpos($class, 'BeSimple\Tests\\')) {
|
2011-10-09 19:13:12 +02:00
|
|
|
$path = __DIR__.'/'.strtr($class, '\\', '/').'.php';
|
2011-09-04 00:29:19 +02:00
|
|
|
if (file_exists($path) && is_readable($path)) {
|
|
|
|
require_once $path;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-09-10 18:51:04 +02:00
|
|
|
} elseif (0 === strpos($class, 'BeSimple\SoapCommon\\')) {
|
2011-11-01 11:12:07 +01:00
|
|
|
$path = __DIR__.'/../src/'.strtr($class, '\\', '/').'.php';
|
|
|
|
if (file_exists($path) && is_readable($path)) {
|
|
|
|
require_once $path;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} elseif (0 === strpos($class, 'ass\XmlSecurity\\')) {
|
2011-12-17 13:34:34 +01:00
|
|
|
$path = __DIR__.'/../vendor/XmlSecurity/src/'.strtr($class, '\\', '/').'.php';
|
2011-09-04 00:29:19 +02:00
|
|
|
if (file_exists($path) && is_readable($path)) {
|
|
|
|
require_once $path;
|
|
|
|
|
2011-09-10 18:51:04 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} elseif (0 === strpos($class, 'vfsStream')) {
|
|
|
|
$path = __DIR__.'/../vendor/vfsStream/src/main/php/org/bovigo/vfs/'.$class.'.php';
|
|
|
|
if (file_exists($path) && is_readable($path)) {
|
|
|
|
require_once $path;
|
|
|
|
|
2011-09-04 00:29:19 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|