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.
 
 
 
 
 
 
nextcloud-server/apps/files_external/3rdparty/php-opencloud/lib/php-opencloud.php

15 lines
403 B

<?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();