2012-03-22 18:56:19 +00:00
|
|
|
<?php
|
|
|
|
return array(
|
|
|
|
'ftp'=>array(
|
2012-04-13 14:01:20 +00:00
|
|
|
'run'=>false,
|
2012-03-22 18:56:19 +00:00
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/test',
|
2012-03-23 17:54:38 +00:00
|
|
|
),
|
|
|
|
'webdav'=>array(
|
2012-04-13 14:01:20 +00:00
|
|
|
'run'=>false,
|
2012-03-23 17:54:38 +00:00
|
|
|
'host'=>'localhost',
|
|
|
|
'user'=>'test',
|
|
|
|
'password'=>'test',
|
|
|
|
'root'=>'/owncloud/files/webdav.php',
|
|
|
|
),
|
2012-03-24 19:27:42 +00:00
|
|
|
'google'=>array(
|
2012-04-13 14:01:20 +00:00
|
|
|
'run'=>false,
|
2012-03-24 19:27:42 +00:00
|
|
|
'consumer_key'=>'anonymous',
|
|
|
|
'consumer_secret'=>'anonymous',
|
|
|
|
'token'=>'test',
|
|
|
|
'token_secret'=>'test',
|
|
|
|
'root'=>'/google',
|
2012-04-18 18:54:07 +00:00
|
|
|
),
|
|
|
|
'swift'=>array(
|
2012-05-02 21:44:00 +00:00
|
|
|
'run'=>false,
|
2012-04-18 18:54:07 +00:00
|
|
|
'user'=>'test:tester',
|
|
|
|
'token'=>'testing',
|
|
|
|
'host'=>'localhost:8080/auth',
|
|
|
|
'root'=>'/',
|
|
|
|
),
|
2012-03-22 18:56:19 +00:00
|
|
|
);
|