Support for new packaged extensions system.
[fa-stable.git] / config.default.php
index 60205becd5a74c6aad6b5d539f6036ea418fcc70..34b86733130fcfec5f344d53ea1781051cce6d07 100644 (file)
@@ -61,6 +61,16 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
         // src-data compatibility check. Do not change.
        $core_version = "2.3";
 
+       // Extension packages repository
+       $FA_repo_version = '2.3'; // this should be get from database FA version?
+       $repo_auth = array(
+                'login' => 'anonymous',
+                'pass' => 'password',
+       );
+       
+       $repository = 'http://'.$repo_auth['login'].':'.$repo_auth['pass'].'@'.'localhost/Repo'
+               .'/index.php?path=';
+               
        // Build for development purposes
        $build_version  = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt"));