-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
31 lines (27 loc) · 781 Bytes
/
config.php
File metadata and controls
31 lines (27 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// Load autoload.php from composer directory
include_once ('vendor/autoload.php');
$config = new de\sideshowsystems\filesharer\FileSharerConfig();
$config->setDataDir('data');
$config->setVersion('0.1 beta');
// TODO: put this to config
$config->setJsLibResources(
array(
'fileSystemPath' => dirname(__FILE__) . '/misc/js/vendor/',
'libs' => array(
array(
'lib' => 'jquery-1.10.2.min.js',
'downloadUrl' => 'http://code.jquery.com/jquery-1.10.2.min.js'
),
array(
'lib' => 'less-1.4.1.min.js',
'downloadUrl' => 'https://raw.github.com/less/less.js/master/dist/less-1.4.1.min.js'
),
array(
'lib' => 'dropzone.js',
'downloadUrl' => 'https://raw.github.com/enyo/dropzone/master/downloads/dropzone.js'
)
)
)
);
return $config;