This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.php
71 lines (70 loc) · 1.48 KB
/
manifest.php
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
$manifest = array (
'acceptable_sugar_flavors' =>
array (
0 => 'CE',
),
'acceptable_sugar_versions' =>
array (
'exact_matches' =>
array (
0 => '6.5.20',
1 => '6.5.21',
2 => '6.5.22',
3 => '6.5.23',
4 => '6.5.24',
5 => '6.5.25',
6 => '6.5.26',
),
'regex_matches' =>
array (
),
),
'acceptable_php_versions' =>
array (
'exact_matches' =>
array (
/* php version exact */
/* /php version exact */
),
'regex_matches' =>
array (
/* php version regex */
'^5\.[5-9](.*)', '^7\.(.*)'
/* /php version regex */
),
),
'acceptable_suitecrm_versions' =>
array (
'exact_matches' =>
array (
/* suitecrm version exact */
'7.11-beta', '7.11'
/* /suitecrm version exact */
),
'regex_matches' =>
array (
/* suitecrm version regex */
'^7\.11(.*)'
/* /suitecrm version regex */
),
),
'author' => 'SalesAgility',
'copy_files' =>
array (
'from_dir' => 'SuiteCRM-Upgrade-7.11.x-to-7.11.7',
'to_dir' => '',
'force_copy' =>
array (
),
),
'description' => '',
'icon' => '',
'is_uninstallable' => false,
'offline_client_applicable' => true,
'name' => 'SuiteCRM',
'published_date' => '2019-07-31 17:00:00',
'type' => 'patch',
'version' => '7.11.7',
);
?>