-
Notifications
You must be signed in to change notification settings - Fork 2
/
build_config
39 lines (35 loc) · 1.32 KB
/
build_config
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
32
33
34
35
36
37
38
39
<?php
/*
* CardDAV Middleware UI
* Written by Massi-X <[email protected]> © 2024
* This file is protected under CC-BY-NC-ND-4.0, please see "LICENSE" file for more information
*/
//Dear Reader, DO NOT EDIT VALUES HERE USE INSTEAD THE CONFIG FILE!
$minimum_fpbx = '15.0'; //minimum compatible FreePBX
$UI_version = '1.4.1'; //version to change in case of new releases
$readme = 'https://github.com/Massi-X/freepbx-carddavmiddleware-ui/#readme'; //readme URL
//list of files from this library that should not end up in the finished module
$excludedLibraryFiles = [
'build',
'build_config',
'devtools'
];
//default module xml array
$modulexml = [
'rawname' => 'carddavmiddleware',
'name' => 'CardDAV Middleware UI',
'version' => '1.0.0',
'publisher' => 'Massi-X',
'license' => 'CC-BY-NC-ND-4.0',
'licenselink' => 'https://github.com/Massi-X/freepbx-carddavmiddleware-ui/blob/main/LICENSE',
'description' => 'This is the UI for CardDAV Middleware. Please change this when releasing.',
'more-info' => $readme,
'updateurl' => '',
'changelog' => "*Powered by CardDAV Middleware UI v.$UI_version* More info at $readme\n", //changelog is one line. Do not add anything more than that
'depends' => [
'version' => $minimum_fpbx,
'module' => [
'framework' //the version is checked at runtime (see Phonemiddleware.class.php)
]
]
];