adding dependacies to manifest
I'm trying to add dependencies to a package manifest
I tried the following :
$manifest = array (
'acceptable_sugar_versions' => array (
'regex_matches' => array (
'6\.3\.*',
),
),
'acceptable_sugar_flavors' =>
array(
'CE', 'PRO','ENT'
),
'readme'=>'',
'key'=>'zz',
'author' => 'MJS',
'description' => 'Quotes & Templates',
'icon' => '',
'is_uninstallable' => true,
'name' => 'quotesandtpl',
'published_date' => '2012-02-03 09:55',
'type' => 'module',
'version' => '1.2',
'remove_tables' => 'prompt',
'dependencies' => array(
array(
'id_name' => 'zz_pbk',
'version' => '1.2',
),
),
);
if I load this I get the following error ZIP Error(11): 0
If I remove :
'dependencies' => array(
array(
'id_name' => 'zz_pbk',
'version' => '1.2',
),
),
Then it works
Any idea what I'm doing wrong?
Mike Solomon
Development Manager
Ivy Ltd
www.ivy.ltd.uk]www.ivy.ltd.uk
php version 5.2.6
MySql 5.1.59
Bookmarks