summaryrefslogtreecommitdiff
path: root/program/include/iniset.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-04-28 13:42:52 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-04-28 13:42:52 +0200
commitb4d50cb41c4d00333c0c680ae04e44129eff7a31 (patch)
treef33551bde38786a1d815a5b99b1004b32494783b /program/include/iniset.php
parent4cb8ced1a4ca32c6837e848dbfc585892b802f67 (diff)
Prepare for the composer-based plugin repository; skip PEAR dependencies for now
Diffstat (limited to 'program/include/iniset.php')
-rw-r--r--program/include/iniset.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php
index 913d3d7f6..919cc7682 100644
--- a/program/include/iniset.php
+++ b/program/include/iniset.php
@@ -60,6 +60,11 @@ require_once 'Roundcube/bootstrap.php';
// register autoloader for rcmail app classes
spl_autoload_register('rcmail_autoload');
+// include composer autoloader (if available)
+if (file_exists('vendor/autoload.php')) {
+ require 'vendor/autoload.php';
+}
+
// backward compatybility (to be removed)
require_once INSTALL_PATH . 'program/include/bc.php';