nextcloud/apps/files_external/tests/config.php

23 lines
401 B
PHP
Raw Normal View History

2012-03-22 22:56:19 +04:00
<?php
return array(
'ftp'=>array(
'host'=>'localhost',
'user'=>'test',
'password'=>'test',
'root'=>'/test',
2012-03-23 21:54:38 +04:00
),
'webdav'=>array(
'host'=>'localhost',
'user'=>'test',
'password'=>'test',
'root'=>'/owncloud/files/webdav.php',
),
'google'=>array(
'consumer_key'=>'anonymous',
'consumer_secret'=>'anonymous',
'token'=>'test',
'token_secret'=>'test',
'root'=>'/google',
)
2012-03-22 22:56:19 +04:00
);