Version Notes
Compatible with magento 1.9.x and Previous version
Place order from admin panel using this payment method
Download this release
Release Info
Developer | Posixtech Ltd. |
Extension | Posixtech_NetworkMerchants |
Version | 1.0.0.6 |
Comparing to | |
See all releases |
Code changes from version 1.0.0.5 to 1.0.0.6
- app/code/community/Posixtech/NetworkMerchants/Block/Direct/Form/Cc.php +1 -1
- app/code/community/Posixtech/NetworkMerchants/Model/PaymentMethod.php +11 -5
- app/code/community/Posixtech/NetworkMerchants/etc/config.xml +1 -1
- app/design/adminhtml/default/default/template/networkmerchants/form/cc.phtml +125 -0
- app/design/frontend/base/default/template/networkmerchants/.DS_Store +0 -0
- app/design/frontend/base/default/template/networkmerchants/form/.DS_Store +0 -0
- package.xml +37 -33
app/code/community/Posixtech/NetworkMerchants/Block/Direct/Form/Cc.php
CHANGED
@@ -42,5 +42,5 @@ class Posixtech_NetworkMerchants_Block_Direct_Form_Cc extends Mage_Payment_Block
|
|
42 |
parent::_construct();
|
43 |
$this->setTemplate('networkmerchants/form/cc.phtml');
|
44 |
}
|
45 |
-
|
46 |
}
|
42 |
parent::_construct();
|
43 |
$this->setTemplate('networkmerchants/form/cc.phtml');
|
44 |
}
|
45 |
+
|
46 |
}
|
app/code/community/Posixtech/NetworkMerchants/Model/PaymentMethod.php
CHANGED
@@ -42,6 +42,8 @@ class Posixtech_NetworkMerchants_Model_PaymentMethod extends Mage_Payment_Model_
|
|
42 |
protected $_canVoid = true;
|
43 |
protected $_canUseCheckout = true;
|
44 |
protected $_canSaveCC = false;
|
|
|
|
|
45 |
|
46 |
protected $_formBlockType = 'networkmerchants/direct_form_cc';
|
47 |
protected $_infoBlockType = 'networkmerchants/direct_info_cc';
|
@@ -50,6 +52,7 @@ class Posixtech_NetworkMerchants_Model_PaymentMethod extends Mage_Payment_Model_
|
|
50 |
|
51 |
const REQUEST_TYPE_AUTH_CAPTURE = 'AUTH_CAPTURE';
|
52 |
const REQUEST_TYPE_AUTH_ONLY = 'AUTH_ONLY';
|
|
|
53 |
|
54 |
const RESPONSE_CODE_APPROVED = 1;
|
55 |
const RESPONSE_CODE_DECLINED = 2;
|
@@ -177,7 +180,7 @@ class Posixtech_NetworkMerchants_Model_PaymentMethod extends Mage_Payment_Model_
|
|
177 |
$request->setShipping(sprintf('%.2F', $order->getBaseShippingAmount()));
|
178 |
$request->setPonumber(strval($payment->getPoNumber()));
|
179 |
$request->setIpaddress(strval($order->getRemoteIp()));
|
180 |
-
|
181 |
$ccNumber = '';
|
182 |
$expDate = '';
|
183 |
$ccCid = '';
|
@@ -189,7 +192,7 @@ class Posixtech_NetworkMerchants_Model_PaymentMethod extends Mage_Payment_Model_
|
|
189 |
} else {
|
190 |
Mage::throwException('Wrong Credit Card Number');
|
191 |
}
|
192 |
-
|
193 |
$request->setCreditCardNumber($ccNumber);
|
194 |
$request->setCcExp($expDate);
|
195 |
$request->setCvv($ccCid);
|
@@ -267,11 +270,14 @@ class Posixtech_NetworkMerchants_Model_PaymentMethod extends Mage_Payment_Model_
|
|
267 |
if ($amount <= 0) {
|
268 |
Mage::throwException(Mage::helper('networkmerchants')->__('Invalid amount for capture.'));
|
269 |
}
|
270 |
-
|
271 |
-
$this->_preauthorizeCapture($payment,$amount);
|
272 |
-
|
273 |
$transactionid = $payment->getTransactionId();
|
274 |
|
|
|
|
|
|
|
|
|
|
|
275 |
$testMode = $this->getConfigData('test_mode');
|
276 |
$username = null;
|
277 |
$password = null;
|
42 |
protected $_canVoid = true;
|
43 |
protected $_canUseCheckout = true;
|
44 |
protected $_canSaveCC = false;
|
45 |
+
protected $_canUseInternal = true;
|
46 |
+
protected $_canFetchTransactionInfo = true;
|
47 |
|
48 |
protected $_formBlockType = 'networkmerchants/direct_form_cc';
|
49 |
protected $_infoBlockType = 'networkmerchants/direct_info_cc';
|
52 |
|
53 |
const REQUEST_TYPE_AUTH_CAPTURE = 'AUTH_CAPTURE';
|
54 |
const REQUEST_TYPE_AUTH_ONLY = 'AUTH_ONLY';
|
55 |
+
const REQUEST_TYPE_CAPTURE_ONLY = 'CAPTURE_ONLY';
|
56 |
|
57 |
const RESPONSE_CODE_APPROVED = 1;
|
58 |
const RESPONSE_CODE_DECLINED = 2;
|
180 |
$request->setShipping(sprintf('%.2F', $order->getBaseShippingAmount()));
|
181 |
$request->setPonumber(strval($payment->getPoNumber()));
|
182 |
$request->setIpaddress(strval($order->getRemoteIp()));
|
183 |
+
|
184 |
$ccNumber = '';
|
185 |
$expDate = '';
|
186 |
$ccCid = '';
|
192 |
} else {
|
193 |
Mage::throwException('Wrong Credit Card Number');
|
194 |
}
|
195 |
+
|
196 |
$request->setCreditCardNumber($ccNumber);
|
197 |
$request->setCcExp($expDate);
|
198 |
$request->setCvv($ccCid);
|
270 |
if ($amount <= 0) {
|
271 |
Mage::throwException(Mage::helper('networkmerchants')->__('Invalid amount for capture.'));
|
272 |
}
|
273 |
+
|
|
|
|
|
274 |
$transactionid = $payment->getTransactionId();
|
275 |
|
276 |
+
if(!$transactionid) {
|
277 |
+
$this->_preauthorizeCapture($payment,$amount);
|
278 |
+
$transactionid = $payment->getTransactionId();
|
279 |
+
}
|
280 |
+
|
281 |
$testMode = $this->getConfigData('test_mode');
|
282 |
$username = null;
|
283 |
$password = null;
|
app/code/community/Posixtech/NetworkMerchants/etc/config.xml
CHANGED
@@ -36,7 +36,7 @@
|
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Posixtech_NetworkMerchants>
|
39 |
-
<version>1.0.0.
|
40 |
</Posixtech_NetworkMerchants>
|
41 |
</modules>
|
42 |
<global>
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Posixtech_NetworkMerchants>
|
39 |
+
<version>1.0.0.6</version>
|
40 |
</Posixtech_NetworkMerchants>
|
41 |
</modules>
|
42 |
<global>
|
app/design/adminhtml/default/default/template/networkmerchants/form/cc.phtml
ADDED
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Posixtech Ltd.
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the EULA
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
*
|
10 |
+
* If you did not receive a copy of the license and are unable to
|
11 |
+
* obtain it through the world-wide-web, please send an email
|
12 |
+
* to support@posixtech.com so we can send you a copy immediately.
|
13 |
+
*
|
14 |
+
* DISCLAIMER
|
15 |
+
*
|
16 |
+
* You can edit or add to this file if you wish to upgrade Magento to newer
|
17 |
+
* versions in the future.
|
18 |
+
*
|
19 |
+
* =================================================================
|
20 |
+
* MAGENTO EDITION USAGE NOTICE
|
21 |
+
* =================================================================
|
22 |
+
* This package designed for Magento COMMUNITY edition version 1.5.0.0 to all upper version.
|
23 |
+
* Posixtech Ltd. does not guarantee correct work of this extension
|
24 |
+
* on any other Magento edition except Magento COMMUNITY edition.
|
25 |
+
* Posixtech Ltd. does not provide extension support in case of
|
26 |
+
* incorrect edition usage.
|
27 |
+
* =================================================================
|
28 |
+
*
|
29 |
+
* @category Posixtech
|
30 |
+
* @package NetworkMerchants
|
31 |
+
* @copyright Copyright (c) 2013 Posixtech Ltd. (http://www.posixtech.com)
|
32 |
+
* @license http://www.posixtech.com/POSIXTECH_LTD_LICENSE.txt
|
33 |
+
*/
|
34 |
+
?>
|
35 |
+
<?php $_code=$this->getMethodCode() ?>
|
36 |
+
<ul id="payment_form_<?php echo $_code ?>" style="display:none">
|
37 |
+
<li>
|
38 |
+
<div class="input-box">
|
39 |
+
<label for="<?php echo $_code ?>_cc_type"><?php echo Mage::helper('payment')->__('Credit Card Type') ?> <span class="required">*</span></label><br/>
|
40 |
+
<select id="<?php echo $_code ?>_cc_type" name="payment[cc_type]" class="required-entry validate-cc-type-select">
|
41 |
+
<?php $_ccType = $this->getInfoData('cc_type') ?>
|
42 |
+
<option value=""></option>
|
43 |
+
<?php foreach ($this->getCcAvailableTypes() as $_typeCode => $_typeName): ?>
|
44 |
+
<option value="<?php echo $_typeCode ?>" <?php if($_typeCode==$_ccType): ?>selected="selected"<?php endif ?>><?php echo $_typeName ?></option>
|
45 |
+
<?php endforeach ?>
|
46 |
+
</select>
|
47 |
+
</div>
|
48 |
+
</li>
|
49 |
+
<li>
|
50 |
+
<div class="input-box">
|
51 |
+
<label for="<?php echo $_code ?>_cc_number"><?php echo Mage::helper('payment')->__('Credit Card Number') ?> <span class="required">*</span></label><br/>
|
52 |
+
<input type="text" id="<?php echo $_code ?>_cc_number" name="payment[cc_number]" title="<?php echo Mage::helper('core')->quoteEscape(Mage::helper('payment')->__('Credit Card Number')) ?>" class="input-text validate-cc-number" value="<?php echo $this->getInfoData('cc_number')?>"/>
|
53 |
+
</div>
|
54 |
+
</li>
|
55 |
+
<li>
|
56 |
+
<div class="input-box">
|
57 |
+
<label for="<?php echo $_code ?>_expiration"><?php echo Mage::helper('payment')->__('Expiration Date') ?> <span class="required">*</span></label><br/>
|
58 |
+
<select id="<?php echo $_code ?>_expiration" style="width:140px;" name="payment[cc_exp_month]" class="validate-cc-exp required-entry">
|
59 |
+
<?php $_ccExpMonth = $this->getInfoData('cc_exp_month') ?>
|
60 |
+
<?php foreach ($this->getCcMonths() as $k=>$v): ?>
|
61 |
+
<option value="<?php echo $k ?>" <?php if($k==$_ccExpMonth): ?>selected="selected"<?php endif ?>><?php echo $v ?></option>
|
62 |
+
<?php endforeach ?>
|
63 |
+
</select>
|
64 |
+
<?php $_ccExpYear = $this->getInfoData('cc_exp_year') ?>
|
65 |
+
<select id="<?php echo $_code ?>_expiration_yr" style="width:103px;" name="payment[cc_exp_year]" class="required-entry">
|
66 |
+
<?php foreach ($this->getCcYears() as $k=>$v): ?>
|
67 |
+
<option value="<?php echo $k ? $k : '' ?>" <?php if($k==$_ccExpYear): ?>selected="selected"<?php endif ?>><?php echo $v ?></option>
|
68 |
+
<?php endforeach ?>
|
69 |
+
</select>
|
70 |
+
</div>
|
71 |
+
</li>
|
72 |
+
<?php if($this->hasVerification()): ?>
|
73 |
+
<li>
|
74 |
+
<div class="input-box">
|
75 |
+
<label for="<?php echo $_code ?>_cc_cid"><?php echo Mage::helper('payment')->__('Card Verification Number') ?> <span class="required">*</span></label><br/>
|
76 |
+
<input type="text" title="<?php echo Mage::helper('core')->quoteEscape(Mage::helper('payment')->__('Card Verification Number')) ?>" class="required-entry input-text validate-cc-cvn" id="<?php echo $_code ?>_cc_cid" name="payment[cc_cid]" style="width:3em;" value="<?php echo $this->getInfoData('cc_cid')?>"/>
|
77 |
+
</div>
|
78 |
+
</li>
|
79 |
+
<?php endif; ?>
|
80 |
+
|
81 |
+
<?php if ($this->hasSsCardType()): ?>
|
82 |
+
<li id="<?php echo $_code ?>_cc_type_ss_div">
|
83 |
+
<ul class="inner-form">
|
84 |
+
<li class="form-alt"><label for="<?php echo $_code ?>_cc_issue" class="required"><em>*</em><?php echo $this->__('Switch/Solo/Maestro Only') ?></label></li>
|
85 |
+
<li>
|
86 |
+
<label for="<?php echo $_code ?>_cc_issue"><?php echo $this->__('Issue Number') ?>:</label>
|
87 |
+
<span class="input-box">
|
88 |
+
<input type="text" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Issue Number')) ?>" class="input-text validate-cc-ukss cvv" id="<?php echo $_code ?>_cc_issue" name="payment[cc_ss_issue]" value="" />
|
89 |
+
</span>
|
90 |
+
</li>
|
91 |
+
|
92 |
+
<li>
|
93 |
+
<label for="<?php echo $_code ?>_start_month"><?php echo $this->__('Start Date') ?>:</label>
|
94 |
+
<div class="input-box">
|
95 |
+
<select id="<?php echo $_code ?>_start_month" name="payment[cc_ss_start_month]" class="validate-cc-ukss month">
|
96 |
+
<?php foreach ($this->getCcMonths() as $k=>$v): ?>
|
97 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$this->getInfoData('cc_ss_start_month')): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
98 |
+
<?php endforeach ?>
|
99 |
+
</select>
|
100 |
+
<select id="<?php echo $_code ?>_start_year" name="payment[cc_ss_start_year]" class="validate-cc-ukss year">
|
101 |
+
<?php foreach ($this->getSsStartYears() as $k=>$v): ?>
|
102 |
+
<option value="<?php echo $k?$k:'' ?>"<?php if($k==$this->getInfoData('cc_ss_start_year')): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
103 |
+
<?php endforeach ?>
|
104 |
+
</select>
|
105 |
+
</div>
|
106 |
+
</li>
|
107 |
+
<li class="adv-container"> </li>
|
108 |
+
</ul>
|
109 |
+
<script type="text/javascript">
|
110 |
+
//<![CDATA[
|
111 |
+
var SSChecked<?php echo $_code ?> = function() {
|
112 |
+
var elm = $('<?php echo $_code ?>_cc_type');
|
113 |
+
if (['SS','SM','SO'].indexOf(elm.value) != -1) {
|
114 |
+
$('<?php echo $_code ?>_cc_type_ss_div').show();
|
115 |
+
} else {
|
116 |
+
$('<?php echo $_code ?>_cc_type_ss_div').hide();
|
117 |
+
}
|
118 |
+
};
|
119 |
+
Event.observe($('<?php echo $_code ?>_cc_type'), 'change', SSChecked<?php echo $_code ?>);
|
120 |
+
SSChecked<?php echo $_code ?>();
|
121 |
+
//]]>
|
122 |
+
</script>
|
123 |
+
</li>
|
124 |
+
<?php endif; ?>
|
125 |
+
</ul>
|
app/design/frontend/base/default/template/networkmerchants/.DS_Store
DELETED
Binary file
|
app/design/frontend/base/default/template/networkmerchants/form/.DS_Store
DELETED
Binary file
|
package.xml
CHANGED
@@ -1,45 +1,49 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Posixtech_NetworkMerchants</name>
|
4 |
-
<version>1.0.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license uri="http://www.posixtech.com/POSIXTECH_LTD_LICENSE.txt">POSIXTECH_LTD_LICENSE</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>The Direct Post method is the simplest integration method for both web-based and non web-based payment
|
10 |
-
<description>What is “NMI Direct Post API”? The Direct Post method is the simplest integration method for both web-based and non web-based payment applications; however, merchants using this integration method should have passed a PCI vulnerability scans before use. For detail regarding this payment method, you can browse
|
11 |

|
12 |
-
Network Merchants Inc (NMI) provide solution regarding payment gateways for companies that want to process online transactions in real-time anywhere in the world through unique distribution channel and power of control. The ‘First Call Resolution’, ‘Proprietary, Innovative &
|
13 |

|
14 |
-
This module is based on ‘Transaction Request APIs’ and has following
|
15 |
-
a. Authorize,
|
16 |
-
b. Authorize &
|
17 |
-
c. Void
|
18 |
-
d. Refund
|
19 |
-
<br />
|
20 |
-
<img src="http://store.posixtech.com/media/magento_extension_service/posixtech_guarantee.jpg" /><br /><br />
|
21 |
-
<b>Customer Experience</b><br />
|
22 |
-
1. Free customer support.<br />
|
23 |
-
2. Free extension updates.<br />
|
24 |
-
3. Free bug fixing.<br />
|
25 |
-
4. PE compatibility<br />
|
26 |
-
5. Easy 2-minute installation<br />
|
27 |
-
6. All our extensions come open source<br />
|
28 |
-
7. Free upgrades during support period<br />
|
29 |
-
8. Our excellent support team is waiting to hear from you each business day from 9:00 am to 5:00 pm GMT<br /><br />
|
30 |

|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
Please note you must already have a Network Merchants Inc account to use this module.
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
<compatible/>
|
44 |
-
<dependencies><required><php><min>5.
|
45 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Posixtech_NetworkMerchants</name>
|
4 |
+
<version>1.0.0.6</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license uri="http://www.posixtech.com/POSIXTECH_LTD_LICENSE.txt">http://www.posixtech.com/POSIXTECH_LTD_LICENSE.txt</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>What is “NMI Direct Post API”? The Direct Post method is the simplest integration method for both web-based and non web-based payment applications; however, merchants using this integration method should have passed a PCI vulnerability scans before use. For detail regarding this payment method, you can browse https://www.nmi.com/</summary>
|
10 |
+
<description>What is “NMI Direct Post API”? The Direct Post method is the simplest integration method for both web-based and non web-based payment applications; however, merchants using this integration method should have passed a PCI vulnerability scans before use. For detail regarding this payment method, you can browse https://www.nmi.com/
|
11 |

|
12 |
+
Network Merchants Inc (NMI) provide solution regarding payment gateways for companies that want to process online transactions in real-time anywhere in the world through unique distribution channel and power of control. The ‘First Call Resolution’, ‘Proprietary, Innovative & Secure Products’ and ‘Non-Compete Guarantee’ are key feature of NMI
|
13 |

|
14 |
+
This module is based on ‘Transaction Request APIs’ and has following option 
|
15 |
+
a. Authorize, 
|
16 |
+
b. Authorize & capture, 
|
17 |
+
c. Void
|
18 |
+
d. Refund.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |

|
20 |
+

|
21 |
+
Customer Experience
|
22 |
+
1. Free customer support.
|
23 |
+
2. Free extension updates.
|
24 |
+
3. Free bug fixing.
|
25 |
+
4. PE compatibility
|
26 |
+
5. Easy 2-minute installation
|
27 |
+
6. All our extensions come open source
|
28 |
+
7. Free upgrades during support period
|
29 |
+
8. Our excellent support team is waiting to hear from you each business day from 9:00 am to 5:00 pm GMT
|
30 |
+
Visit Extension Page: http://store.posixtech.com/nmi-direct-post-api.html 
|
31 |
+
User Guide: http://store.posixtech.com/nmi-direct-post-api.html 
|
32 |
Please note you must already have a Network Merchants Inc account to use this module.
|
33 |
+
Please, check Magento versions compatibility on the product page!
|
34 |
+

|
35 |
+
Questions? Require customization?
|
36 |
+
For any kind of question or feedback, feel free to contact us directly at info@posixtech.com
|
37 |
+

|
38 |
+
Themes and extensions releases, updates & promotions — follow Posixtech on Twitter and Facebook!
|
39 |
+
</description>
|
40 |
+
<notes>Compatible with magento 1.9.x and Previous version
|
41 |
+

|
42 |
+
Place order from admin panel using this payment method</notes>
|
43 |
+
<authors><author><name>Posixtech Ltd.</name><user>posixtech</user><email>info@posixtech.com</email></author></authors>
|
44 |
+
<date>2015-11-26</date>
|
45 |
+
<time>08:31:08</time>
|
46 |
+
<contents><target name="magecommunity"><dir name="Posixtech"><dir name="NetworkMerchants"><dir name="Block"><dir name="Direct"><dir name="Form"><file name="Cc.php" hash="38f0fe27199570c40c8c10e584e58df8"/><file name=".DS_Store" hash="5fee2b876e4438ab4b88b25b0cedd4e6"/></dir><dir name="Info"><file name="Cc.php" hash="1f65aaf483320075531780db1f65b1ea"/><file name=".DS_Store" hash="5fee2b876e4438ab4b88b25b0cedd4e6"/></dir><file name=".DS_Store" hash="1b57af7fedd28f88710e11d4342f43eb"/></dir><file name=".DS_Store" hash="2209c4ebeb79dd90152514adb95102bc"/></dir><dir name="Helper"><file name="Data.php" hash="921d622c9f7d889d93ee42216efdf8ce"/><file name=".DS_Store" hash="5cc9b356b8566590d84d1a846226a1e1"/></dir><dir name="Model"><dir name="Direct"><file name="Request.php" hash="bae335e36c9042dfc41d8c474ff8da71"/><file name=".DS_Store" hash="70d24aa344419921e5d1ec1fe72cc082"/></dir><file name="PaymentMethod.php" hash="45ea79ac4f86589a9676c078b40ff693"/><file name=".DS_Store" hash="807fb538f6177b96f9d87b07e0e99560"/></dir><dir name="etc"><file name="config.xml" hash="c595c9ef84fb98be3d64de93e9c5865f"/><file name="system.xml" hash="32c758ef339e07d89ed8393310cd38bc"/><file name=".DS_Store" hash="3cf7327b7340b7db7c031327cb542a62"/></dir><file name=".DS_Store" hash="7c43533d587efe5cf71deecbd962d309"/></dir><file name=".DS_Store" hash="67263079577f97adc3e509bbc452593c"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="networkmerchants"><dir name="form"><file name="cc.phtml" hash="38f12e2367153e959db3ef6b10c6d8a6"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="networkmerchants"><dir name="form"><file name="cc.phtml" hash="4234692fc2a7bb37365255d07b4575c3"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Posixtech_NetworkMerchants.xml" hash="9742774cfc7565a93c52edb1206fdce3"/></dir></target></contents>
|
47 |
<compatible/>
|
48 |
+
<dependencies><required><php><min>5.3.0</min><max>5.6.0</max></php></required></dependencies>
|
49 |
</package>
|