AltaPay_for_Magento1 - Version 1.2.2

Version Notes

States in Mexico and US, is now being converted to ISO 3166-2 format, which is used by Paypal.

PHP minimum requirement has also been lowered to 5.4.45.

Download this release

Release Info

Developer AltaPay Integration Team
Extension AltaPay_for_Magento1
Version 1.2.2
Comparing to
See all releases


Code changes from version 1.2.1 to 1.2.2

app/code/community/Altapay/Payment/Model/Method/Gateway.php CHANGED
@@ -58,7 +58,7 @@ class Altapay_Payment_Model_Method_Gateway extends Altapay_Payment_Model_Method_
58
  'billing_country'=> $billingAddress->getData('country_id'),
59
  'billing_address'=> $billingAddress->getData('street'),
60
  'billing_city'=>$billingAddress->getData('city'),
61
- 'billing_region'=>$billingAddress->getData('region'),
62
  'billing_firstname'=> $billingAddress->getData('firstname'),
63
  'billing_lastname'=> $billingAddress->getData('lastname'),
64
  'email'=>$billingAddress->getData('email'),
@@ -66,7 +66,7 @@ class Altapay_Payment_Model_Method_Gateway extends Altapay_Payment_Model_Method_
66
  'shipping_country'=> $shippingAddress->getData('country_id'),
67
  'shipping_address'=> $shippingAddress->getData('street'),
68
  'shipping_city'=>$shippingAddress->getData('city'),
69
- 'shipping_region'=>$shippingAddress->getData('region'),
70
  'shipping_firstname'=> $shippingAddress->getData('firstname'),
71
  'shipping_lastname'=> $shippingAddress->getData('lastname'),
72
  'customer_phone'=> $billingAddress->getData('telephone'),
@@ -217,4 +217,297 @@ class Altapay_Payment_Model_Method_Gateway extends Altapay_Payment_Model_Method_
217
  {
218
  return Mage::getStoreConfig(Altapay_Payment_Model_Constants::CONF_PATH_GATEWAY_TERMINAL);
219
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  }
58
  'billing_country'=> $billingAddress->getData('country_id'),
59
  'billing_address'=> $billingAddress->getData('street'),
60
  'billing_city'=>$billingAddress->getData('city'),
61
+ 'billing_region'=>$this->getStateCode($billingAddress->getData('region')),
62
  'billing_firstname'=> $billingAddress->getData('firstname'),
63
  'billing_lastname'=> $billingAddress->getData('lastname'),
64
  'email'=>$billingAddress->getData('email'),
66
  'shipping_country'=> $shippingAddress->getData('country_id'),
67
  'shipping_address'=> $shippingAddress->getData('street'),
68
  'shipping_city'=>$shippingAddress->getData('city'),
69
+ 'shipping_region'=>$this->getStateCode($billingAddress->getData('region')),
70
  'shipping_firstname'=> $shippingAddress->getData('firstname'),
71
  'shipping_lastname'=> $shippingAddress->getData('lastname'),
72
  'customer_phone'=> $billingAddress->getData('telephone'),
217
  {
218
  return Mage::getStoreConfig(Altapay_Payment_Model_Constants::CONF_PATH_GATEWAY_TERMINAL);
219
  }
220
+
221
+ private function getStateCode($state){ //only focusing on US and Mexico states.
222
+ $stateCode = "";
223
+ switch(trim(strtolower($state))){
224
+ case "alabama":
225
+ $stateCode = "AL";
226
+ break;
227
+ case "alaska":
228
+ $stateCode = "AK";
229
+ break;
230
+ case "arizona":
231
+ $stateCode = "AZ";
232
+ break;
233
+ case "arkansas":
234
+ $stateCode = "AR";
235
+ break;
236
+ case "california":
237
+ $stateCode = "AR";
238
+ break;
239
+ case "colorado":
240
+ $stateCode = "CO";
241
+ break;
242
+ case "connecticut":
243
+ $stateCode = "CT";
244
+ break;
245
+ case "delaware":
246
+ $stateCode = "DE";
247
+ break;
248
+ case "districtofcolumbia":
249
+ $stateCode = "DC";
250
+ break;
251
+ case "florida":
252
+ $stateCode = "FL";
253
+ break;
254
+ case "georgia":
255
+ $stateCode = "GA";
256
+ break;
257
+ case "hawaii":
258
+ $stateCode = "HI";
259
+ break;
260
+ case "idaho":
261
+ $stateCode = "ID";
262
+ break;
263
+ case "illinois":
264
+ $stateCode = "IL";
265
+ break;
266
+ case "indiana":
267
+ $stateCode = "IN";
268
+ break;
269
+ case "iowa":
270
+ $stateCode = "IA";
271
+ break;
272
+ case "kansas":
273
+ $stateCode = "KS";
274
+ break;
275
+ case "kentucky":
276
+ $stateCode = "KY";
277
+ break;
278
+ case "louisiana":
279
+ $stateCode = "LA";
280
+ break;
281
+ case "maine":
282
+ $stateCode = "ME";
283
+ break;
284
+ case "maryland":
285
+ $stateCode = "MD";
286
+ break;
287
+ case "massachusetts":
288
+ $stateCode = "MA";
289
+ break;
290
+ case "michigan":
291
+ $stateCode = "MI";
292
+ break;
293
+ case "minnesota":
294
+ $stateCode = "MN";
295
+ break;
296
+ case "mississippi":
297
+ $stateCode = "MS";
298
+ break;
299
+ case "missouri":
300
+ $stateCode = "MO";
301
+ break;
302
+ case "montana":
303
+ $stateCode = "MT";
304
+ break;
305
+ case "nebraska":
306
+ $stateCode = "NE";
307
+ break;
308
+ case "nevada":
309
+ $stateCode = "NV";
310
+ break;
311
+ case "newhampshire":
312
+ $stateCode = "NH";
313
+ break;
314
+ case "newjersey":
315
+ $stateCode = "NJ";
316
+ break;
317
+ case "newmexico":
318
+ $stateCode = "NM";
319
+ break;
320
+ case "newyork":
321
+ $stateCode = "NY";
322
+ break;
323
+ case "northcarolina":
324
+ $stateCode = "NC";
325
+ break;
326
+ case "northdakota":
327
+ $stateCode = "ND";
328
+ break;
329
+ case "ohio":
330
+ $stateCode = "OH";
331
+ break;
332
+ case "oklahoma":
333
+ $stateCode = "OK";
334
+ break;
335
+ case "oregon":
336
+ $stateCode = "OR";
337
+ break;
338
+ case "pennsylvania":
339
+ $stateCode = "PA";
340
+ break;
341
+ case "puertorico":
342
+ $stateCode = "PR";
343
+ break;
344
+ case "rhodeisland":
345
+ $stateCode = "RI";
346
+ break;
347
+ case "southcarolina":
348
+ $stateCode = "SC";
349
+ break;
350
+ case "southdakota":
351
+ $stateCode = "SD";
352
+ break;
353
+ case "tennessee":
354
+ $stateCode = "TN";
355
+ break;
356
+ case "texas":
357
+ $stateCode = "TX";
358
+ break;
359
+ case "utah":
360
+ $stateCode = "UT";
361
+ break;
362
+ case "vermont":
363
+ $stateCode = "VT";
364
+ break;
365
+ case "virginia":
366
+ $stateCode = "VA";
367
+ break;
368
+ case "washington":
369
+ $stateCode = "WA";
370
+ break;
371
+ case "westvirginia":
372
+ $stateCode = "WV";
373
+ break;
374
+ case "wisconsin":
375
+ $stateCode = "WI";
376
+ break;
377
+ case "wyoming":
378
+ $stateCode = "WY";
379
+ break;
380
+ case "armedforcesamericas":
381
+ $stateCode = "AA";
382
+ break;
383
+ case "armedforceseurope":
384
+ $stateCode = "AE";
385
+ break;
386
+ case "asrmedforcespacific":
387
+ $stateCode = "AP";
388
+ break;
389
+ case "americansamoa":
390
+ $stateCode = "AS";
391
+ break;
392
+ case "federatedstatesofmicronesia":
393
+ $stateCode = "FM";
394
+ break;
395
+ case "guam":
396
+ $stateCode = "GU";
397
+ break;
398
+ case "marshallislands":
399
+ $stateCode = "MH";
400
+ break;
401
+ case "northernmarianaislands":
402
+ $stateCode = "MP";
403
+ break;
404
+ case "palau":
405
+ $stateCode = "PW";
406
+ break;
407
+ case "virginislands":
408
+ $stateCode = "VI";
409
+ break;
410
+ //==========================================================================================================
411
+ case "aguascalientes":
412
+ $stateCode = "AGS";
413
+ break;
414
+ case "bajacalifornia":
415
+ $stateCode = "BC";
416
+ break;
417
+ case "bajacaliforniasur":
418
+ $stateCode = "BCS";
419
+ break;
420
+ case "campeche":
421
+ $stateCode = "CAMP";
422
+ break;
423
+ case "chiapas":
424
+ $stateCode = "CHIS";
425
+ break;
426
+ case "chihuahua":
427
+ $stateCode = "CHIH";
428
+ break;
429
+ case "coahuila":
430
+ $stateCode = "COAH";
431
+ break;
432
+ case "colima":
433
+ $stateCode = "COL";
434
+ break;
435
+ case "distritofederal":
436
+ $stateCode = "DF";
437
+ break;
438
+ case "durango":
439
+ $stateCode = "DGO";
440
+ break;
441
+ case "estadodeméxico":
442
+ $stateCode = "MEX";
443
+ break;
444
+ case "guanajuato":
445
+ $stateCode = "GTO";
446
+ break;
447
+ case "guerrero":
448
+ $stateCode = "GRO";
449
+ break;
450
+ case "hidalgo":
451
+ $stateCode = "HGO";
452
+ break;
453
+ case "jalisco":
454
+ $stateCode = "JAL";
455
+ break;
456
+ case "michoacán":
457
+ $stateCode = "MICH";
458
+ break;
459
+ case "morelos":
460
+ $stateCode = "MOR";
461
+ break;
462
+ case "nayarit":
463
+ $stateCode = "NAY";
464
+ break;
465
+ case "nuevoleón":
466
+ $stateCode = "NL";
467
+ break;
468
+ case "oaxaca":
469
+ $stateCode = "OAX";
470
+ break;
471
+ case "puebla":
472
+ $stateCode = "PUE";
473
+ break;
474
+ case "querétaro":
475
+ $stateCode = "QRO";
476
+ break;
477
+ case "quintanaroo":
478
+ $stateCode = "Q ROO";
479
+ break;
480
+ case "sanluispotosí":
481
+ $stateCode = "SLP";
482
+ break;
483
+ case "sinaloa":
484
+ $stateCode = "SIN";
485
+ break;
486
+ case "sonora":
487
+ $stateCode = "SON";
488
+ break;
489
+ case "tabasco":
490
+ $stateCode = "TAB";
491
+ break;
492
+ case "tamaulipas":
493
+ $stateCode = "TAMPS";
494
+ break;
495
+ case "tlaxcala":
496
+ $stateCode = "TLAX";
497
+ break;
498
+ case "veracruz":
499
+ $stateCode = "VER";
500
+ break;
501
+ case "yucatán":
502
+ $stateCode = "YUC";
503
+ break;
504
+ case "zacatecas":
505
+ $stateCode = "ZAC";
506
+ break;
507
+ default:
508
+ $stateCode = $state;
509
+ }
510
+
511
+ return $stateCode;
512
+ }
513
  }
app/code/community/Altapay/Payment/controllers/OnepageController.php CHANGED
@@ -296,8 +296,10 @@ class Altapay_Payment_OnepageController extends Mage_Checkout_OnepageController
296
  $checkoutSessionId = $this->getOnepage()->getCheckout()->getSessionId();
297
 
298
  try{
299
- // Clear the basket and save the order (including some info about how the payment went)
300
  $this->getOnepage()->getQuote()->collectTotals();
 
 
301
  $this->getOnepage()->getQuote()->getPayment()->setAdditionalInformation('successType', $successType);
302
  $orderId = $this->getOnepage()->saveOrder()->getLastOrderId();
303
  $this->getOnepage()->getQuote()->save();
296
  $checkoutSessionId = $this->getOnepage()->getCheckout()->getSessionId();
297
 
298
  try{
299
+
300
  $this->getOnepage()->getQuote()->collectTotals();
301
+ // Clear the basket and save the order (including some info about how the payment went)
302
+ $this->getOnepage()->getQuote()->setTotalsCollectedFlag(false)->collectTotals();
303
  $this->getOnepage()->getQuote()->getPayment()->setAdditionalInformation('successType', $successType);
304
  $orderId = $this->getOnepage()->saveOrder()->getLastOrderId();
305
  $this->getOnepage()->getQuote()->save();
package.xml CHANGED
@@ -1,18 +1,20 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>AltaPay_for_Magento1</name>
4
- <version>1.2.1</version>
5
  <stability>stable</stability>
6
  <license>The MIT License (MIT)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Plugin that integrates Magento to the AltaPay payment gateway.</summary>
10
  <description>AltaPay has made it much easier for you as merchant/developer to receive secure payments in your Magento web shop. AltaPay is fully integrated with Magento via a plug-in.</description>
11
- <notes>Bug fix - Correction in orderlines</notes>
 
 
12
  <authors><author><name>AltaPay Integration Team</name><user>altapay_int</user><email>integration@altapay.com</email></author></authors>
13
- <date>2017-03-17</date>
14
- <time>16:13:25</time>
15
- <contents><target name="magecommunity"><dir name="Altapay"><dir name="Payment"><dir name="Block"><dir name="Customer"><dir name="Account"><file name="Token.php" hash="62e630661f5a28a033773f30041667a2"/></dir></dir><dir name="Form"><file name="Gateway.php" hash="10963a08e6553eafb6c13b3211d1873a"/><file name="Moto.php" hash="c722348e5e2f3b17ea3b06402bfba4f9"/><file name="Recurring.php" hash="2cac58ab0231f7071479fe0770c5b2fe"/><file name="Token.php" hash="77763cc1be021e04d46f3d8754e7077a"/></dir><dir name="Info"><file name="Gateway.php" hash="b3a133fb41b393da80658a35417967b1"/><file name="Moto.php" hash="86b593e08d0ab00f86e7c41ef711d8a2"/><file name="Recurring.php" hash="0c4da217141f7ba8aecd8fe564e344ce"/><file name="Token.php" hash="2ce16d8a5c01b193092611ff6c9fc8a8"/></dir><dir name="Onepage"><file name="Failed.php" hash="445738a686c709fd59343aff587c73f4"/><file name="Form.php" hash="b23ad18f71e2ace2e6a44320d747b7a1"/><dir name="Success"><file name="Token.php" hash="6aa5da3158d6ec668e0d001254b4d99d"/></dir><file name="Success.php" hash="2564809634dc37e16ceb81ef9b86d34b"/></dir><file name="Onepage.php" hash="ad81e2d0e68761f9a8c9b0237a3c36ff"/></dir><dir name="Helper"><file name="CurrencyMapper.php" hash="03088924615092d202ec3dfe3c2ad9a3"/><file name="Data.php" hash="f5350cf643355583e62bf97f066582c9"/><file name="Logger.php" hash="9e2ab6436a5e22af40ae39108d9d4ea5"/><file name="Utilities.php" hash="3c55a010f3b4705b3cd168257f43dfea"/></dir><dir name="Model"><file name="Altapay.php" hash="ab551084b21dd8a075a35661818679f5"/><dir name="Api"><file name="ALTAPAY_VERSION.php" hash="f09924828ecdd17f9b21f1b44d0c2294"/><file name="AltapayCallbackHandler.class.php" hash="964370c9295b1823fa65b2760d1b8d28"/><file name="AltapayMerchantAPI.class.php" hash="429831af898d1b7b83dda0b93aef9022"/><file name="IAltapayCommunicationLogger.class.php" hash="99b8f25360bbbd29e50ea829d3bfe5b7"/><dir name="exceptions"><file name="AltapayConnectionFailedException.class.php" hash="652416bff05f7534c9d723c0f6108dc6"/><file name="AltapayInvalidResponseException.class.php" hash="ddbf173a9f40444c20e90a3a27b9519c"/><file name="AltapayMerchantAPIException.class.php" hash="50237012813c5525df1aabfe35ebaf31"/><file name="AltapayRequestTimeoutException.class.php" hash="dd37a9977e4485f6512a583accc98ef6"/><file name="AltapayUnauthorizedAccessException.class.php" hash="b52faff4abd48c75ab483d100e87cb36"/><file name="AltapayUnknownMerchantAPIException.class.php" hash="1e19cd3c3bbec2224eb4e4f221caf7ff"/><file name="AltapayXmlException.class.php" hash="19a435d6c5ae0d6c37cda11e1e18e09b"/></dir><dir name="http"><file name="AltapayCurlBasedHttpUtils.class.php" hash="cb47ed7599fc36cf6da0dcd8ec5e9d5e"/><file name="AltapayFOpenBasedHttpUtils.class.php" hash="596956789903c8b201c4c8a645264666"/><file name="AltapayHttpRequest.class.php" hash="97955f33a1b127e892264ed0dd8c84a6"/><file name="AltapayHttpResponse.class.php" hash="de62a9d507ae836bdd8e7773194ffd47"/><file name="IAltapayHttpUtils.class.php" hash="63007aaa93e155019ef670a77ef4541b"/></dir><dir name="request"><file name="AltapayAPITransactionsRequest.class.php" hash="c723def7d72c961fa2b5213396126733"/></dir><dir name="response"><file name="AltapayAPIAddress.class.php" hash="f9f2f225ca4b2e5155e57bd112cb047e"/><file name="AltapayAPIChargebackEvent.class.php" hash="bcb0b4430aa943c7389edde862364af7"/><file name="AltapayAPIChargebackEvents.class.php" hash="0ab35b4c56f9f5a79eb028ed6e5c2a53"/><file name="AltapayAPICountryOfOrigin.class.php" hash="c24653e0dee13c3229a778c4bbc26b13"/><file name="AltapayAPICustomerInfo.class.php" hash="4be6bf4e24d749979edd95556dc55ec1"/><file name="AltapayAPIFunding.class.php" hash="71fdfbe0113702bf9292224d10e1b845"/><file name="AltapayAPIPayment.class.php" hash="2292b4c8715d5a7bdba8e5f4af5943bc"/><file name="AltapayAPIPaymentInfos.class.php" hash="926b2335da38c6e8209b450659e3a32b"/><file name="AltapayAPIPaymentNatureService.class.php" hash="ff99401cf50429dcd2845a77673882c8"/><file name="AltapayAPIReconciliationIdentifier.class.php" hash="0b75f7ba353d304e021612043f64471b"/><file name="AltapayAbstractPaymentResponse.class.php" hash="8b8920f3f331d81eff7109d4c9bbd1f6"/><file name="AltapayAbstractResponse.class.php" hash="36c199c005dfd92b6bfb7618fd0dce82"/><file name="AltapayCalculateSurchargeResponse.class.php" hash="f22251db3145e8d895af0ff993522ce6"/><file name="AltapayCaptureRecurringResponse.class.php" hash="559967cc555bf7e79ab2717a06fbefe4"/><file name="AltapayCaptureResponse.class.php" hash="8fd5d56c9df9e61233432fb79270d84a"/><file name="AltapayCreatePaymentRequestResponse.class.php" hash="1999636b78fc5988e1f899f7e1ef7eb5"/><file name="AltapayFundingListResponse.class.php" hash="e8994ffe5e039c273a649d8779256769"/><file name="AltapayGetPaymentResponse.class.php" hash="fb83e969b9dd1647cd4d2ac9e2de9644"/><file name="AltapayGetTerminalsResponse.class.php" hash="d6b471ef2579c791ce15ab99f426727c"/><file name="AltapayLoginResponse.class.php" hash="17a33bf9f1359f52441c24c86cc88471"/><file name="AltapayPreauthRecurringResponse.class.php" hash="9d4b71a0a26b398b4ef84e981afb0b30"/><file name="AltapayRefundResponse.class.php" hash="5a5275d4a4c8ea52a60e775a7b54158b"/><file name="AltapayReleaseResponse.class.php" hash="31c751505ce70222e394fb7f1c48e8f8"/><file name="AltapayReservationResponse.class.php" hash="e77596681b58a39949a4e23e0c5ff98b"/><file name="AltapayTerminal.class.php" hash="3e467641e1d612be5380ccb99c9a733d"/></dir></dir><file name="Constants.php" hash="40ae3d205720eef516acf29dd2c70791"/><dir name="Method"><file name="Abstract.php" hash="3aa4318568813009329a2c3627dbf161"/><file name="Gateway.php" hash="5cbba92579e8fa0b20083c5333c78993"/><file name="Moto.php" hash="b21e961bc6eeea479f1b6fd70597fa29"/><file name="Recurring.php" hash="f0107de1c333a264a55770e9265e1d59"/><file name="Token.php" hash="2abe1866f4d467176535591717964472"/></dir><file name="Observer.php" hash="79cff57b4406853f8054ba0bf8913462"/><dir name="Resource"><dir name="Subscription"><file name="Collection.php" hash="75569c1889f06201d07420f7fbb225a2"/></dir><file name="Subscription.php" hash="3122e10012cb8ff5697abe3f2445c27b"/><dir name="Token"><file name="Collection.php" hash="fb0bbaa1c5d4cf71c8f5099db31f0782"/></dir><file name="Token.php" hash="9e75ce9111f171e3841bb99df5928632"/></dir><dir name="Source"><file name="PaymentAction.php" hash="0ff49129bfdb9a74899e7603ba18e9b2"/><file name="Terminals.php" hash="73d01eb63dab4ea16c07a8e33904bc09"/></dir><file name="Subscription.php" hash="6c86a22de4c6dc6a53ba8ed5624a81ad"/><file name="Token.php" hash="4bb26c0862c5425075c180c82e56485d"/></dir><dir name="controllers"><file name="OnepageController.php" hash="2ee43ebb549f06a804854f553945edfa"/><file name="OnepageController.php.bak" hash="713236f1490d0aee69026a42f914263d"/><file name="TokenController.php" hash="c0f15cb458edcd4ec3c4dbc989cfdf99"/></dir><dir name="etc"><file name="adminhtml.xml" hash="38829e4c43a434d811f52315e0127af7"/><file name="config.xml" hash="b1de4e97b822f411159786f6e6fdf96e"/><file name="system.xml" hash="dccf8992ce4e6e12b5716151f9cc8bc5"/></dir><dir name="sql"><dir name="altapaypayment_setup"><file name="install-1.0.0.php" hash="45d8306bc7d51feff9a795d5107b02dc"/><file name="upgrade-1.0.0-1.0.1.php" hash="492b11587e232b46030e1c7702e1ea01"/></dir></dir></dir><dir name="PaymentExtraGateways"><dir name="Block"><dir name="Form"><file name="Gateway2.php" hash="37ade71ea30349235e277f47e3ba3227"/><file name="Gateway3.php" hash="c4c452e19a540c5d77cb0d73dfe1b4bb"/><file name="Gateway4.php" hash="0823082e059f59bbe5d9f2b2e7ec3ef3"/><file name="Gateway5.php" hash="e2dddc767418b4fdbbbe6d8377b90c72"/></dir><dir name="Info"><file name="Gateway2.php" hash="b6a6e2f5a4ff01121c4fedc20bd73f14"/><file name="Gateway3.php" hash="cbe7ea00eef6ada31e0f780f79322337"/><file name="Gateway4.php" hash="6290ae35d42980078044c2c5d46e7ad7"/><file name="Gateway5.php" hash="a081d9725ea572ae4b8728f55c2aa04c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a5528a3ae5cbad0250f09be2daa31ca0"/></dir><dir name="Model"><file name="Constants.php" hash="79d7bddf1954eb9dfcbe9067931c2076"/><dir name="Method"><file name="Gateway2.php" hash="cb8150a30ebc0da765be8c242c2d258c"/><file name="Gateway3.php" hash="b0ecd8a250613fac0fbc0e961c9f106b"/><file name="Gateway4.php" hash="fed39f65a425c3143ca3dcd4d60de475"/><file name="Gateway5.php" hash="2504fb66cb830c7711188975badd0ccf"/></dir></dir><dir name="etc"><file name="config.xml" hash="b210e030a38040288f52b92b81e45f5d"/><file name="system.xml" hash="76419dad9a7da5622a9a013bb142c2a1"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="altapay.xml" hash="4155d8d8f691f56322231374573a4ff7"/></dir><dir name="template"><dir name="altapay"><dir name="payment"><dir name="form"><file name="moto.phtml" hash="4ff0daaa4221e2f2457e9a8353de6626"/></dir><dir name="info"><file name="gateway.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="moto.phtml" hash="f327b26f0e978536f5d28271513a3efa"/><file name="recurring.phtml" hash="3fe4c5e2c9bd278f28ada23823c7a13a"/></dir></dir></dir><dir name="altapaypaymentextragateways"><dir name="info"><file name="gateway2.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway3.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway4.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway5.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/></dir><dir name="pdf"><file name="gateway2.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway3.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway4.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway5.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="altapay.xml" hash="2415a8d0dd5a90f436f9723ed383d06c"/></dir><dir name="template"><dir name="altapay"><dir name="checkout"><file name="default_styling.css" hash="ecdee520dfae2bb7330f68c509f5acdb"/><file name="default_styling_nojs.css" hash="d4bc0421cce0fffa9708cd048db2e891"/><file name="failed.phtml" hash="6126855f97a7efc4defbd8c3ed051799"/><file name="form.phtml" hash="a2fe2963491a9742b40f50d7fc35d0c7"/><file name="magento_styling.css" hash="cb7bc729a64a7efd29bfa19a06d02bf3"/><file name="magento_styling_nojs.css" hash="e9fcb8f00e73fc5bee029298fa61fc0c"/><dir name="onepage"><file name="progress.phtml" hash="c1dd84dcf00cd10330d492767684dce1"/><dir name="success"><file name="token.phtml" hash="8743dbdeb2de8d63fc712af2b040773b"/></dir></dir><file name="success_redirect.phtml" hash="9616c7799e8c3cde544ae9522832cd12"/></dir><dir name="customer"><dir name="account"><dir name="token"><file name="view.phtml" hash="c23e1b9d6eef7706851079ce35d73029"/></dir></dir></dir><dir name="payment"><dir name="form"><file name="gateway.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="recurring.phtml" hash="43ff5ed38cf301bfb2898d7df4647570"/><file name="token.phtml" hash="f3b1bf30a6587c5927cc1736c4de1605"/></dir><dir name="info"><file name="gateway.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="recurring.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="token.phtml" hash="1cd140b78afaddd992ee990482fbf229"/></dir></dir></dir><dir name="altapaypaymentextragateways"><dir name="form"><file name="gateway2.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="gateway3.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="gateway4.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="gateway5.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/></dir><dir name="info"><file name="gateway2.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway3.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway4.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway5.phtml" hash="1cd140b78afaddd992ee990482fbf229"/></dir><dir name="pdf"><file name="gateway2.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway3.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway4.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway5.phtml" hash="1cd140b78afaddd992ee990482fbf229"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_GB"><file name="Altapay_Payment.csv" hash="2a097614d7a9414f5a06b082814b38a2"/></dir><dir name="en_US"><file name="Altapay_Payment.csv" hash="2a097614d7a9414f5a06b082814b38a2"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="altapay.css" hash="4c522d61f889ff448bd45d1bbcf35a0e"/><dir name="images"><file name="altapay.png" hash="b10208d0a82dd80562eb03e7508e97b4"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="altapay"><dir name="css"><file name="altapay.css" hash="aa3ded5e41e19abc114b39c5c7bcbdcc"/></dir><dir name="images"><file name="ajax-loader.gif" hash="2ef5e9c1839462b187c93535a1670b92"/><file name="error.png" hash="1e1534f925cb26b45ad30536f1bc1896"/><file name="success.png" hash="5ea5d6dac9344616dd7de4b8c2695937"/></dir><dir name="js"><file name="altapay.js" hash="59bd1ba2566fec5ba134340d8a750eb7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Altapay_Payment.xml" hash="a0ccc3aba96392eaf0703e2a7616df32"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.5.9</min><max>7.0.10</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>AltaPay_for_Magento1</name>
4
+ <version>1.2.2</version>
5
  <stability>stable</stability>
6
  <license>The MIT License (MIT)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Plugin that integrates Magento to the AltaPay payment gateway.</summary>
10
  <description>AltaPay has made it much easier for you as merchant/developer to receive secure payments in your Magento web shop. AltaPay is fully integrated with Magento via a plug-in.</description>
11
+ <notes>States in Mexico and US, is now being converted to ISO 3166-2 format, which is used by Paypal. &#xD;
12
+ &#xD;
13
+ PHP minimum requirement has also been lowered to 5.4.45. </notes>
14
  <authors><author><name>AltaPay Integration Team</name><user>altapay_int</user><email>integration@altapay.com</email></author></authors>
15
+ <date>2017-06-14</date>
16
+ <time>09:35:08</time>
17
+ <contents><target name="magecommunity"><dir name="Altapay"><dir name="Payment"><dir name="Block"><dir name="Customer"><dir name="Account"><file name="Token.php" hash="62e630661f5a28a033773f30041667a2"/></dir></dir><dir name="Form"><file name="Gateway.php" hash="10963a08e6553eafb6c13b3211d1873a"/><file name="Moto.php" hash="c722348e5e2f3b17ea3b06402bfba4f9"/><file name="Recurring.php" hash="2cac58ab0231f7071479fe0770c5b2fe"/><file name="Token.php" hash="77763cc1be021e04d46f3d8754e7077a"/></dir><dir name="Info"><file name="Gateway.php" hash="b3a133fb41b393da80658a35417967b1"/><file name="Moto.php" hash="86b593e08d0ab00f86e7c41ef711d8a2"/><file name="Recurring.php" hash="0c4da217141f7ba8aecd8fe564e344ce"/><file name="Token.php" hash="2ce16d8a5c01b193092611ff6c9fc8a8"/></dir><dir name="Onepage"><file name="Failed.php" hash="445738a686c709fd59343aff587c73f4"/><file name="Form.php" hash="b23ad18f71e2ace2e6a44320d747b7a1"/><dir name="Success"><file name="Token.php" hash="6aa5da3158d6ec668e0d001254b4d99d"/></dir><file name="Success.php" hash="2564809634dc37e16ceb81ef9b86d34b"/></dir><file name="Onepage.php" hash="ad81e2d0e68761f9a8c9b0237a3c36ff"/></dir><dir name="Helper"><file name="CurrencyMapper.php" hash="03088924615092d202ec3dfe3c2ad9a3"/><file name="Data.php" hash="f5350cf643355583e62bf97f066582c9"/><file name="Logger.php" hash="9e2ab6436a5e22af40ae39108d9d4ea5"/><file name="Utilities.php" hash="3c55a010f3b4705b3cd168257f43dfea"/></dir><dir name="Model"><file name="Altapay.php" hash="ab551084b21dd8a075a35661818679f5"/><dir name="Api"><file name="ALTAPAY_VERSION.php" hash="f09924828ecdd17f9b21f1b44d0c2294"/><file name="AltapayCallbackHandler.class.php" hash="964370c9295b1823fa65b2760d1b8d28"/><file name="AltapayMerchantAPI.class.php" hash="429831af898d1b7b83dda0b93aef9022"/><file name="IAltapayCommunicationLogger.class.php" hash="99b8f25360bbbd29e50ea829d3bfe5b7"/><dir name="exceptions"><file name="AltapayConnectionFailedException.class.php" hash="652416bff05f7534c9d723c0f6108dc6"/><file name="AltapayInvalidResponseException.class.php" hash="ddbf173a9f40444c20e90a3a27b9519c"/><file name="AltapayMerchantAPIException.class.php" hash="50237012813c5525df1aabfe35ebaf31"/><file name="AltapayRequestTimeoutException.class.php" hash="dd37a9977e4485f6512a583accc98ef6"/><file name="AltapayUnauthorizedAccessException.class.php" hash="b52faff4abd48c75ab483d100e87cb36"/><file name="AltapayUnknownMerchantAPIException.class.php" hash="1e19cd3c3bbec2224eb4e4f221caf7ff"/><file name="AltapayXmlException.class.php" hash="19a435d6c5ae0d6c37cda11e1e18e09b"/></dir><dir name="http"><file name="AltapayCurlBasedHttpUtils.class.php" hash="cb47ed7599fc36cf6da0dcd8ec5e9d5e"/><file name="AltapayFOpenBasedHttpUtils.class.php" hash="596956789903c8b201c4c8a645264666"/><file name="AltapayHttpRequest.class.php" hash="97955f33a1b127e892264ed0dd8c84a6"/><file name="AltapayHttpResponse.class.php" hash="de62a9d507ae836bdd8e7773194ffd47"/><file name="IAltapayHttpUtils.class.php" hash="63007aaa93e155019ef670a77ef4541b"/></dir><dir name="request"><file name="AltapayAPITransactionsRequest.class.php" hash="c723def7d72c961fa2b5213396126733"/></dir><dir name="response"><file name="AltapayAPIAddress.class.php" hash="f9f2f225ca4b2e5155e57bd112cb047e"/><file name="AltapayAPIChargebackEvent.class.php" hash="bcb0b4430aa943c7389edde862364af7"/><file name="AltapayAPIChargebackEvents.class.php" hash="0ab35b4c56f9f5a79eb028ed6e5c2a53"/><file name="AltapayAPICountryOfOrigin.class.php" hash="c24653e0dee13c3229a778c4bbc26b13"/><file name="AltapayAPICustomerInfo.class.php" hash="4be6bf4e24d749979edd95556dc55ec1"/><file name="AltapayAPIFunding.class.php" hash="71fdfbe0113702bf9292224d10e1b845"/><file name="AltapayAPIPayment.class.php" hash="2292b4c8715d5a7bdba8e5f4af5943bc"/><file name="AltapayAPIPaymentInfos.class.php" hash="926b2335da38c6e8209b450659e3a32b"/><file name="AltapayAPIPaymentNatureService.class.php" hash="ff99401cf50429dcd2845a77673882c8"/><file name="AltapayAPIReconciliationIdentifier.class.php" hash="0b75f7ba353d304e021612043f64471b"/><file name="AltapayAbstractPaymentResponse.class.php" hash="8b8920f3f331d81eff7109d4c9bbd1f6"/><file name="AltapayAbstractResponse.class.php" hash="36c199c005dfd92b6bfb7618fd0dce82"/><file name="AltapayCalculateSurchargeResponse.class.php" hash="f22251db3145e8d895af0ff993522ce6"/><file name="AltapayCaptureRecurringResponse.class.php" hash="559967cc555bf7e79ab2717a06fbefe4"/><file name="AltapayCaptureResponse.class.php" hash="8fd5d56c9df9e61233432fb79270d84a"/><file name="AltapayCreatePaymentRequestResponse.class.php" hash="1999636b78fc5988e1f899f7e1ef7eb5"/><file name="AltapayFundingListResponse.class.php" hash="e8994ffe5e039c273a649d8779256769"/><file name="AltapayGetPaymentResponse.class.php" hash="fb83e969b9dd1647cd4d2ac9e2de9644"/><file name="AltapayGetTerminalsResponse.class.php" hash="d6b471ef2579c791ce15ab99f426727c"/><file name="AltapayLoginResponse.class.php" hash="17a33bf9f1359f52441c24c86cc88471"/><file name="AltapayPreauthRecurringResponse.class.php" hash="9d4b71a0a26b398b4ef84e981afb0b30"/><file name="AltapayRefundResponse.class.php" hash="5a5275d4a4c8ea52a60e775a7b54158b"/><file name="AltapayReleaseResponse.class.php" hash="31c751505ce70222e394fb7f1c48e8f8"/><file name="AltapayReservationResponse.class.php" hash="e77596681b58a39949a4e23e0c5ff98b"/><file name="AltapayTerminal.class.php" hash="3e467641e1d612be5380ccb99c9a733d"/></dir></dir><file name="Constants.php" hash="40ae3d205720eef516acf29dd2c70791"/><dir name="Method"><file name="Abstract.php" hash="3aa4318568813009329a2c3627dbf161"/><file name="Gateway.php" hash="5b4d4b03a297674c79d6a2f35a63f983"/><file name="Moto.php" hash="b21e961bc6eeea479f1b6fd70597fa29"/><file name="Recurring.php" hash="f0107de1c333a264a55770e9265e1d59"/><file name="Token.php" hash="2abe1866f4d467176535591717964472"/></dir><file name="Observer.php" hash="79cff57b4406853f8054ba0bf8913462"/><dir name="Resource"><dir name="Subscription"><file name="Collection.php" hash="75569c1889f06201d07420f7fbb225a2"/></dir><file name="Subscription.php" hash="3122e10012cb8ff5697abe3f2445c27b"/><dir name="Token"><file name="Collection.php" hash="fb0bbaa1c5d4cf71c8f5099db31f0782"/></dir><file name="Token.php" hash="9e75ce9111f171e3841bb99df5928632"/></dir><dir name="Source"><file name="PaymentAction.php" hash="0ff49129bfdb9a74899e7603ba18e9b2"/><file name="Terminals.php" hash="73d01eb63dab4ea16c07a8e33904bc09"/></dir><file name="Subscription.php" hash="6c86a22de4c6dc6a53ba8ed5624a81ad"/><file name="Token.php" hash="4bb26c0862c5425075c180c82e56485d"/></dir><dir name="controllers"><file name="OnepageController.php" hash="d149e79a46748249125932d0c4f4f34e"/><file name="OnepageController.php.bak" hash="713236f1490d0aee69026a42f914263d"/><file name="TokenController.php" hash="c0f15cb458edcd4ec3c4dbc989cfdf99"/></dir><dir name="etc"><file name="adminhtml.xml" hash="38829e4c43a434d811f52315e0127af7"/><file name="config.xml" hash="b1de4e97b822f411159786f6e6fdf96e"/><file name="system.xml" hash="dccf8992ce4e6e12b5716151f9cc8bc5"/></dir><dir name="sql"><dir name="altapaypayment_setup"><file name="install-1.0.0.php" hash="45d8306bc7d51feff9a795d5107b02dc"/><file name="upgrade-1.0.0-1.0.1.php" hash="492b11587e232b46030e1c7702e1ea01"/></dir></dir></dir><dir name="PaymentExtraGateways"><dir name="Block"><dir name="Form"><file name="Gateway2.php" hash="37ade71ea30349235e277f47e3ba3227"/><file name="Gateway3.php" hash="c4c452e19a540c5d77cb0d73dfe1b4bb"/><file name="Gateway4.php" hash="0823082e059f59bbe5d9f2b2e7ec3ef3"/><file name="Gateway5.php" hash="e2dddc767418b4fdbbbe6d8377b90c72"/></dir><dir name="Info"><file name="Gateway2.php" hash="b6a6e2f5a4ff01121c4fedc20bd73f14"/><file name="Gateway3.php" hash="cbe7ea00eef6ada31e0f780f79322337"/><file name="Gateway4.php" hash="6290ae35d42980078044c2c5d46e7ad7"/><file name="Gateway5.php" hash="a081d9725ea572ae4b8728f55c2aa04c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a5528a3ae5cbad0250f09be2daa31ca0"/></dir><dir name="Model"><file name="Constants.php" hash="79d7bddf1954eb9dfcbe9067931c2076"/><dir name="Method"><file name="Gateway2.php" hash="cb8150a30ebc0da765be8c242c2d258c"/><file name="Gateway3.php" hash="b0ecd8a250613fac0fbc0e961c9f106b"/><file name="Gateway4.php" hash="fed39f65a425c3143ca3dcd4d60de475"/><file name="Gateway5.php" hash="2504fb66cb830c7711188975badd0ccf"/></dir></dir><dir name="etc"><file name="config.xml" hash="b210e030a38040288f52b92b81e45f5d"/><file name="system.xml" hash="76419dad9a7da5622a9a013bb142c2a1"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="altapay.xml" hash="4155d8d8f691f56322231374573a4ff7"/></dir><dir name="template"><dir name="altapay"><dir name="payment"><dir name="form"><file name="moto.phtml" hash="4ff0daaa4221e2f2457e9a8353de6626"/></dir><dir name="info"><file name="gateway.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="moto.phtml" hash="f327b26f0e978536f5d28271513a3efa"/><file name="recurring.phtml" hash="3fe4c5e2c9bd278f28ada23823c7a13a"/></dir></dir></dir><dir name="altapaypaymentextragateways"><dir name="info"><file name="gateway2.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway3.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway4.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway5.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/></dir><dir name="pdf"><file name="gateway2.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway3.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway4.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/><file name="gateway5.phtml" hash="35c1107df98fcc3fa5038913e83e676a"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="altapay.xml" hash="2415a8d0dd5a90f436f9723ed383d06c"/></dir><dir name="template"><dir name="altapay"><dir name="checkout"><file name="default_styling.css" hash="ecdee520dfae2bb7330f68c509f5acdb"/><file name="default_styling_nojs.css" hash="d4bc0421cce0fffa9708cd048db2e891"/><file name="failed.phtml" hash="6126855f97a7efc4defbd8c3ed051799"/><file name="form.phtml" hash="a2fe2963491a9742b40f50d7fc35d0c7"/><file name="magento_styling.css" hash="cb7bc729a64a7efd29bfa19a06d02bf3"/><file name="magento_styling_nojs.css" hash="e9fcb8f00e73fc5bee029298fa61fc0c"/><dir name="onepage"><file name="progress.phtml" hash="c1dd84dcf00cd10330d492767684dce1"/><dir name="success"><file name="token.phtml" hash="8743dbdeb2de8d63fc712af2b040773b"/></dir></dir><file name="success_redirect.phtml" hash="9616c7799e8c3cde544ae9522832cd12"/></dir><dir name="customer"><dir name="account"><dir name="token"><file name="view.phtml" hash="c23e1b9d6eef7706851079ce35d73029"/></dir></dir></dir><dir name="payment"><dir name="form"><file name="gateway.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="recurring.phtml" hash="43ff5ed38cf301bfb2898d7df4647570"/><file name="token.phtml" hash="f3b1bf30a6587c5927cc1736c4de1605"/></dir><dir name="info"><file name="gateway.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="recurring.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="token.phtml" hash="1cd140b78afaddd992ee990482fbf229"/></dir></dir></dir><dir name="altapaypaymentextragateways"><dir name="form"><file name="gateway2.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="gateway3.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="gateway4.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/><file name="gateway5.phtml" hash="24f8298198c9dbe7a1157a3af3bf905d"/></dir><dir name="info"><file name="gateway2.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway3.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway4.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway5.phtml" hash="1cd140b78afaddd992ee990482fbf229"/></dir><dir name="pdf"><file name="gateway2.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway3.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway4.phtml" hash="1cd140b78afaddd992ee990482fbf229"/><file name="gateway5.phtml" hash="1cd140b78afaddd992ee990482fbf229"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_GB"><file name="Altapay_Payment.csv" hash="2a097614d7a9414f5a06b082814b38a2"/></dir><dir name="en_US"><file name="Altapay_Payment.csv" hash="2a097614d7a9414f5a06b082814b38a2"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="altapay.css" hash="4c522d61f889ff448bd45d1bbcf35a0e"/><dir name="images"><file name="altapay.png" hash="b10208d0a82dd80562eb03e7508e97b4"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="altapay"><dir name="css"><file name="altapay.css" hash="aa3ded5e41e19abc114b39c5c7bcbdcc"/></dir><dir name="images"><file name="ajax-loader.gif" hash="2ef5e9c1839462b187c93535a1670b92"/><file name="error.png" hash="1e1534f925cb26b45ad30536f1bc1896"/><file name="success.png" hash="5ea5d6dac9344616dd7de4b8c2695937"/></dir><dir name="js"><file name="altapay.js" hash="59bd1ba2566fec5ba134340d8a750eb7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Altapay_Payment.xml" hash="a0ccc3aba96392eaf0703e2a7616df32"/></dir></target></contents>
18
  <compatible/>
19
+ <dependencies><required><php><min>5.4.45</min><max>7.0.10</max></php></required></dependencies>
20
  </package>