tags:

views:

51

answers:

0

Is there a proper way in Magento (or failing that, any way) to specify that an extension depends on a specific version of another module?

A normal dependency section looks something like this:

<?xml version="1.0"?>
<config>
    <modules>
        <Company_Module>
            <active>true</active>
            <codePool>local</codePool>
            <depends>
             <Mage_Catalog />
         </depends>
        </Company_Module>
    </modules>
</config>

I'm hoping that there's a good way to extend that specification to say that I want some version of Mage_Catalog (1.4.0.0 e.g.)

Thanks, Joe