blob: 15ff034b92de8baf88ef447591389103c5034a08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* entry point for PHP-OpenCloud library
*
* @copyright 2013 Rackspace Hosting, Inc.
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
require_once(__DIR__ . '/Autoload.php');
require_once(__DIR__ . '/OpenCloud/Globals.php');
$classLoader = new ClassLoader;
$classLoader->registerNamespaces(array(
'OpenCloud' => array(__DIR__, __DIR__ . '/../tests')
));
$classLoader->register();
|