Requirements
Using Jamroom
I think what your after is 'requires' in the _meta() function. check jrFoxyCartBundle, it requires jrFoxyCart:
/**
* meta
*/
function jrFoxyCartBundle_meta()
{
$_tmp = array(
'name' => 'FoxyCart Bundles',
'url' => 'bundle',
'version' => '1.0.1',
'developer' => 'The Jamroom Network, ©' . strftime('%Y'),
'description' => 'Package multiple items for sale into bundles so they can be priced separately',
'category' => 'ecommerce',
'requires' => 'jrFoxyCart',
'priority' => 81
);
return $_tmp;
}
as for the other issue, your still not using phpstorm i see.