Avenla_KlarnaCheckout - Version 1.3.1

Version Notes

- Fixed return url
- Fixed console errors

Download this release

Release Info

Developer Avenla Oy
Extension Avenla_KlarnaCheckout
Version 1.3.1
Comparing to
See all releases


Code changes from version 1.3.0 to 1.3.1

app/code/community/Avenla/KlarnaCheckout/Model/Order/Kcov2.php CHANGED
@@ -153,7 +153,7 @@ class Avenla_KlarnaCheckout_Model_Order_Kcov2 extends Avenla_KlarnaCheckout_Mode
153
  if(!$isUpdate){
154
  $data['merchant']['id'] = $this->config->getKlarnaEid();
155
  $data['merchant']['terms_uri'] = $this->config->getTermsUri();
156
- $data['merchant']['checkout_uri'] = $this->helper->getCheckoutUri();
157
  $data['merchant']['confirmation_uri'] = $this->helper->getConfirmationUri();
158
  $data['merchant']['push_uri'] = $this->helper->getPushUri();
159
 
153
  if(!$isUpdate){
154
  $data['merchant']['id'] = $this->config->getKlarnaEid();
155
  $data['merchant']['terms_uri'] = $this->config->getTermsUri();
156
+ $data['merchant']['checkout_uri'] = $this->helper->getCartUri();
157
  $data['merchant']['confirmation_uri'] = $this->helper->getConfirmationUri();
158
  $data['merchant']['push_uri'] = $this->helper->getPushUri();
159
 
app/code/community/Avenla/KlarnaCheckout/Model/Order/Kcov3.php CHANGED
@@ -135,7 +135,7 @@ class Avenla_KlarnaCheckout_Model_Order_Kcov3 extends Avenla_KlarnaCheckout_Mode
135
  $data['merchant_reference1'] = $this->quote ? $this->quote->getId() : '12345';
136
  if(!$isUpdate){
137
  $data['merchant_urls']['terms'] = $this->config->getTermsUri();
138
- $data['merchant_urls']['checkout'] = $this->helper->getCheckoutUri();
139
  $data['merchant_urls']['confirmation'] = $this->helper->getConfirmationUri($this->type);
140
  $data['merchant_urls']['push'] = $this->helper->getPushUri($this->type);
141
 
135
  $data['merchant_reference1'] = $this->quote ? $this->quote->getId() : '12345';
136
  if(!$isUpdate){
137
  $data['merchant_urls']['terms'] = $this->config->getTermsUri();
138
+ $data['merchant_urls']['checkout'] = $this->helper->getCartUri();
139
  $data['merchant_urls']['confirmation'] = $this->helper->getConfirmationUri($this->type);
140
  $data['merchant_urls']['push'] = $this->helper->getPushUri($this->type);
141
 
app/code/community/Avenla/KlarnaCheckout/etc/config.xml CHANGED
@@ -23,7 +23,7 @@
23
  <config>
24
  <modules>
25
  <Avenla_KlarnaCheckout>
26
- <version>1.3.0</version>
27
  </Avenla_KlarnaCheckout>
28
  </modules>
29
  <global>
23
  <config>
24
  <modules>
25
  <Avenla_KlarnaCheckout>
26
+ <version>1.3.1</version>
27
  </Avenla_KlarnaCheckout>
28
  </modules>
29
  <global>
app/design/frontend/base/default/template/KCO/cart.phtml CHANGED
@@ -117,7 +117,11 @@
117
  </div>
118
  <div class="col1-set">
119
  <div class="col-1">
120
- <?php if(Mage::getModel('klarnaCheckout/config')->showGiftMessage()):?>
 
 
 
 
121
  <?php echo $this->getChildHtml('cart.giftmessage') ?>
122
  <?php endif; ?>
123
  <?php echo $this->getChildHtml('checkout.cart.extra') ?>
@@ -173,7 +177,7 @@
173
  width += e.getWidth();
174
  });
175
 
176
- if(width > $$('div.paymentMenuContainer')[0].getWidth()){
177
  $$('div.payments')[0].removeClassName('payments').addClassName('responsive-payments');
178
  $$('div.responsive-payments ul')[0].insert({before: '<span class="paymentnavi-toggle"></span>'});
179
  }
117
  </div>
118
  <div class="col1-set">
119
  <div class="col-1">
120
+ <?php
121
+ $giftmessage_order = Mage::getStoreConfig('sales/gift_options/allow_order', Mage::app()->getStore());
122
+ $giftmessage_items = Mage::getStoreConfig('sales/gift_options/allow_items', Mage::app()->getStore());
123
+ ?>
124
+ <?php if(($giftmessage_order || $giftmessage_items) && Mage::getModel('klarnaCheckout/config')->showGiftMessage()):?>
125
  <?php echo $this->getChildHtml('cart.giftmessage') ?>
126
  <?php endif; ?>
127
  <?php echo $this->getChildHtml('checkout.cart.extra') ?>
177
  width += e.getWidth();
178
  });
179
 
180
+ if($$('div.paymentMenuContainer')[0] && width > $$('div.paymentMenuContainer')[0].getWidth()){
181
  $$('div.payments')[0].removeClassName('payments').addClassName('responsive-payments');
182
  $$('div.responsive-payments ul')[0].insert({before: '<span class="paymentnavi-toggle"></span>'});
183
  }
app/design/frontend/base/default/template/KCO/cart/giftmessage.phtml CHANGED
@@ -81,6 +81,7 @@
81
  </div>
82
 
83
  <script>
 
84
  Event.observe(window, 'load', function(){
85
  appendGiftButton();
86
  });
@@ -124,4 +125,5 @@
124
  }
125
  });
126
  }
 
127
  </script>
81
  </div>
82
 
83
  <script>
84
+
85
  Event.observe(window, 'load', function(){
86
  appendGiftButton();
87
  });
125
  }
126
  });
127
  }
128
+
129
  </script>
app/design/frontend/base/default/template/KCO/cart_twocolumns.phtml CHANGED
@@ -133,7 +133,11 @@
133
  </div>
134
 
135
  <div class="full-column">
136
- <?php if(Mage::getModel('klarnaCheckout/config')->showGiftMessage()):?>
 
 
 
 
137
  <?php echo $this->getChildHtml('cart.giftmessage') ?>
138
  <?php endif; ?>
139
  <?php echo $this->getChildHtml('checkout.cart.extra') ?>
@@ -180,7 +184,7 @@
180
  width += e.getWidth();
181
  });
182
 
183
- if(width > $$('div.paymentMenuContainer')[0].getWidth()){
184
  $$('div.payments')[0].removeClassName('payments').addClassName('responsive-payments');
185
  $$('div.responsive-payments ul')[0].insert({before: '<span class="paymentnavi-toggle"></span>'});
186
  }
133
  </div>
134
 
135
  <div class="full-column">
136
+ <?php
137
+ $giftmessage_order = Mage::getStoreConfig('sales/gift_options/allow_order', Mage::app()->getStore());
138
+ $giftmessage_items = Mage::getStoreConfig('sales/gift_options/allow_items', Mage::app()->getStore());
139
+ ?>
140
+ <?php if(($giftmessage_order || $giftmessage_items) && Mage::getModel('klarnaCheckout/config')->showGiftMessage()):?>
141
  <?php echo $this->getChildHtml('cart.giftmessage') ?>
142
  <?php endif; ?>
143
  <?php echo $this->getChildHtml('checkout.cart.extra') ?>
184
  width += e.getWidth();
185
  });
186
 
187
+ if($$('div.paymentMenuContainer')[0] && width > $$('div.paymentMenuContainer')[0].getWidth()){
188
  $$('div.payments')[0].removeClassName('payments').addClassName('responsive-payments');
189
  $$('div.responsive-payments ul')[0].insert({before: '<span class="paymentnavi-toggle"></span>'});
190
  }
app/locale/sv_SE/Avenla_KlarnaCheckout.csv CHANGED
@@ -106,4 +106,6 @@
106
  "Custom Checkbox text", "Anpassad kryssruta text"
107
  "Is Custom Checkbox required", "Obligatoriskt att bocka i anpassad kryssruta"
108
  "Custom Checkbox default value", "Anpassad kryssruta standardvärde"
109
- "Paste <i>[MyLinkText](www.example.com)</i> and replace placeholders with your own values to get a link.", "Klistra in <i>[LänkText](www.example.com)</i> och ersätt platshållarna med egna värden för att skapa en länk."
 
 
106
  "Custom Checkbox text", "Anpassad kryssruta text"
107
  "Is Custom Checkbox required", "Obligatoriskt att bocka i anpassad kryssruta"
108
  "Custom Checkbox default value", "Anpassad kryssruta standardvärde"
109
+ "Paste <i>[MyLinkText](www.example.com)</i> and replace placeholders with your own values to get a link.", "Klistra in <i>[LänkText](www.example.com)</i> och ersätt platshållarna med egna värden för att skapa en länk."
110
+ "Available only if you have enabled B2B with Klarna", "Bekräfta att ditt kontrakt med Klara tillåter B2B."
111
+ "Terms URL for B2B", "Villkor för B2B (URL)"
lib/KlarnaCheckout/klarna/checkout/src/Klarna/Checkout/UserAgent.php CHANGED
@@ -65,7 +65,7 @@ class Klarna_Checkout_UserAgent
65
  ),
66
  'Module' => array(
67
  'name' => 'KlarnaCheckout.MagentoModule',
68
- 'version' => '1.3.0'
69
  )
70
  );
71
  }
65
  ),
66
  'Module' => array(
67
  'name' => 'KlarnaCheckout.MagentoModule',
68
+ 'version' => '1.3.1'
69
  )
70
  );
71
  }
lib/KlarnaCheckout/klarna/kco_rest/src/Klarna/Rest/Transport/UserAgent.php CHANGED
@@ -126,6 +126,6 @@ class UserAgent implements UserAgentInterface
126
  ->setField('Library', static::NAME, static::VERSION, $options)
127
  ->setField('OS', php_uname('s'), php_uname('r'))
128
  ->setField('Language', 'PHP', phpversion())
129
- ->setField('Module', 'KlarnaCheckout.MagentoModule', '1.3.0');
130
  }
131
  }
126
  ->setField('Library', static::NAME, static::VERSION, $options)
127
  ->setField('OS', php_uname('s'), php_uname('r'))
128
  ->setField('Language', 'PHP', phpversion())
129
+ ->setField('Module', 'KlarnaCheckout.MagentoModule', '1.3.1');
130
  }
131
  }
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Avenla_KlarnaCheckout</name>
4
- <version>1.3.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://productdownloads.avenla.com/magento-modules/klarna-checkout/">Custom license by Avenla Oy</license>
7
  <channel>community</channel>
@@ -9,17 +9,14 @@
9
  <summary>Klarna Checkout payment module</summary>
10
  <description>http://productdownloads.avenla.com/magento-modules/klarna-checkout/&#xD;
11
  &#xD;
12
- For questions and support - klarna-support@avenla.com</description>
13
- <notes>- Added support for B2B flow&#xD;
14
- - Support for custom checkbox&#xD;
15
- - Added Swedish localization&#xD;
16
- - Fixed newsletter registration issues&#xD;
17
- - Fixed v3 logging when disabled&#xD;
18
- - Improved exception handling with invalid customer data</notes>
19
  <authors><author><name>Avenla Oy</name><user>Avenla</user><email>klarna-support@avenla.fi</email></author></authors>
20
- <date>2016-11-29</date>
21
- <time>18:02:19</time>
22
- <contents><target name="magecommunity"><dir name="Avenla"><dir name="KlarnaCheckout"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Field"><file name="Pclass.php" hash="a3a8781d74d03bdee2159362ff30c4b8"/></dir><dir name="Fieldset"><file name="Info.php" hash="b48e54b41d282319fb5da50a7084eb01"/></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Price.php" hash="a04ec018c772d419cbb6de9ec1498870"/></dir></dir><dir name="KCO"><file name="Confirmation.php" hash="dbfafab6a02ad208a21f9759fae3469a"/><file name="Info.php" hash="82324c42c39052e4234a091015bf54ec"/><file name="Newsletter.php" hash="b34e7f244d304f2a35fc02e7427d005c"/></dir><file name="KCO.php" hash="1847586cfe9d1af85b811b2587e8bc16"/><dir name="Widgets"><file name="Logo.php" hash="599c7567d37b57a641523e280d4c2ac1"/><file name="Methods.php" hash="f87ce319be84ed91d9fee7baada6cc46"/></dir></dir><dir name="Helper"><file name="Data.php" hash="63190d8ee7b66697898bb596c3b828b1"/></dir><dir name="Model"><file name="Api.php" hash="94f3b99679bf9b01d251c826a9cebc84"/><file name="Config.php" hash="b7aac2cbb9e60cc9c559f9210f04a37c"/><file name="Newsletter.php" hash="1b2c3aea2f00fd6105f910d6cc1be8b4"/><file name="Observer.php" hash="75edcdb4d9daef34bcaeddd275e6837d"/><dir name="Order"><file name="Abstract.php" hash="167226be99bd37723938541c4ef40300"/><file name="Kcov2.php" hash="6b62524b0d78e7a505227dd27a87f733"/><file name="Kcov3.php" hash="98b32333d757c7fdecaac0b2f77c966d"/></dir><dir name="Payment"><file name="Abstract.php" hash="a098d6a89cab566007da63e4d39e7d84"/><file name="KCO.php" hash="6a9bdf466fae07e436ad61286809e88b"/><file name="KCOv3.php" hash="f21068c65929a52233d1b9276fc6e660"/></dir><dir name="Source"><file name="AnalyticsType.php" hash="eeb28d28fa67968547767569357525d2"/><file name="Api.php" hash="5765ff370fc6b90a1780473d884c0fe7"/><file name="FlowType.php" hash="c1b1b9d83148d1e5260c68ff3a0cca92"/><file name="Kcolayout.php" hash="bccb8aeca2ea38a2273a3c7e8e87dd10"/><file name="Pplayout.php" hash="277646254f006271ed0737c8c8558355"/><file name="Ppwidget.php" hash="438ce91b57322262999da94f0c697020"/><file name="Servermode.php" hash="c29f0359cea13cc67303dda5aa782a75"/><file name="Shippingmethods.php" hash="ee8144bb334cfcaf4cbf5ec9a80bb648"/><file name="Taxclass.php" hash="e8b03031ff58be49feb3ebdab3105d7d"/></dir><file name="Validator.php" hash="e3f8aa6239b942e4ed70fd32dcc625c4"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="KlarnaCheckout"><file name="KCOController.php" hash="79cb89fe9c165e5f5cce98f64bc100a5"/></dir></dir><file name="CartController.php" hash="22162fe250577eaddb4c65ea9dd6bf9b"/><file name="KCOController.php" hash="98dddc5088df9cfa7ed5513d6c8ab2d6"/></dir><dir name="etc"><file name="config.xml" hash="c5664c7efe408d4a432bfe0a4171874a"/><file name="system.xml" hash="f1e631f76f3f496a7d002b02e8fd581a"/><file name="widget.xml" hash="67d36573c6b2575eb1132f7f3857daf3"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="KCO"><file name="info.phtml" hash="9fb39ec87bf20a23dd84b2bc8fd31c66"/><dir name="system"><dir name="config"><dir name="field"><file name="pclass.phtml" hash="e391f8e949fe7a6a981cc05cd5ebb01e"/></dir><dir name="fieldset"><file name="info.phtml" hash="91192438f9b4fea9fb27d969ce87addd"/></dir></dir></dir></dir></dir><dir name="layout"><file name="KCO.xml" hash="4a9068eefb3de4a964cdf1e462832ebe"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="KCO"><file name="KCO.phtml" hash="b4bb3f8736f6dc412efffc5c9b796ff6"/><dir name="cart"><file name="crosssell.phtml" hash="e7f78cb99e14ab680b794524b8666812"/><file name="giftmessage.phtml" hash="4cb99583d6ce811a3a576a6e20ff0f99"/><dir name="item"><file name="default.phtml" hash="9190b3fad2f2ed57ea2ffbed2e1faa02"/></dir><file name="shipping.phtml" hash="b940c98adec4e3fd455ffc04094a1a4f"/></dir><file name="cart.phtml" hash="4d0d54548f1a20ed359f8e517767d233"/><file name="cart_twocolumns.phtml" hash="6e296c790b5c3a96cdb313ee4829b977"/><dir name="catalog"><dir name="product"><file name="price.phtml" hash="2179af266b4b5ed222a8416f2db01f88"/></dir></dir><file name="info.phtml" hash="72bd0c5f9f608bb9d0b868024542b19e"/><file name="link.phtml" hash="8a5e1fc0b237b735a93cd11bf5b444ad"/><file name="newsletter.phtml" hash="87c3730ed525d3810a5df0a9180bf993"/><dir name="onepage"><file name="link.phtml" hash="a05ab2ebf5f0ed225c2f3967e2bceced"/></dir><dir name="widget"><file name="methods.phtml" hash="7415fafbd8f2acf134c4ac81c30f4bd4"/></dir></dir></dir><dir name="layout"><file name="KCO.xml" hash="519b9bd7c8018423aeb003a04897191f"/></dir></dir></dir></dir></target><target name="magelib"><dir name="KlarnaCheckout"><file name="autoload.php" hash="a04f0cfab6dcb59791f65854de6b8a56"/><dir name="composer"><file name="ClassLoader.php" hash="9c1e7fe1a9eb1693e07ee4420ca5361e"/><file name="LICENSE" hash="084a034acbad39464e3df608c6dc064f"/><file name="autoload_classmap.php" hash="0db52a7175044ac72c0a7838f679c961"/><file name="autoload_files.php" hash="2e85332f49b950e0803a44b0b32e2e45"/><file name="autoload_namespaces.php" hash="3a9c4765a647c4e74ec3d6ced23cdd90"/><file name="autoload_psr4.php" hash="4bad687ad1856ec1deb198da8e7c9266"/><file name="autoload_real.php" hash="d1c1309f920cddc66d576ba36e51dd8d"/><file name="installed.json" hash="def63aad3a0b9070755e7a7de05050b1"/></dir><dir name="guzzlehttp"><dir name="guzzle"><file name="CHANGELOG.md" hash="acc188c927e6bf09d6f9d018ca24d1e8"/><file name="LICENSE" hash="f9ddfabead2127b089fa60b1cf462ad7"/><file name="Makefile" hash="317955136cb3575149363d0b7174dbe5"/><file name="README.md" hash="d1df21412e1e3a6dd1d2d5b796db9be7"/><file name="UPGRADING.md" hash="8d0d9048e11ed2b5e79b1ad86db91d48"/><dir name="build"><file name="packager.php" hash="ab4669be9765aecb479f77c67b98b276"/></dir><file name="composer.json" hash="67f18c5c530a0534f1164fb1ff040444"/><dir name="docs"><file name="Makefile" hash="12a604d6e6b876e11714735cdc6403f1"/><dir name="_static"><file name="guzzle-icon.png" hash="18e05d325a1a51de498fc4a32b15ca48"/><file name="logo.png" hash="f87c876737dd9b36664e6055196c1341"/></dir><dir name="_templates"><file name="nav_links.html" hash="fb4639874978e92069d3d58405369a40"/></dir><file name="clients.rst" hash="f49ec91ff685e740a00dc295297a2660"/><file name="conf.py" hash="24f0dcb8445fe1e4f2c05aa782f9385e"/><file name="events.rst" hash="c1615c7cd00adb02cdebe755b7bb1b18"/><file name="faq.rst" hash="94e3a8cefa5068ebea9223b2ab9cb194"/><file name="handlers.rst" hash="e92fd255c14344536d326b19fcd6ae70"/><file name="http-messages.rst" hash="37e5a669761894e39e32f6cc6da9ede3"/><file name="index.rst" hash="ebb9c7abc88df5051c5eb2419fbb740a"/><file name="overview.rst" hash="0b8656757de9b8f5b0b4f3c6179755db"/><file name="quickstart.rst" hash="c8777d83b78d55453bf8c2ae22a9beb4"/><file name="requirements.txt" hash="444d2df1b594a091c02af61aa48e3ad9"/><file name="streams.rst" hash="c074299618766206fdf8273e89c36fe3"/><file name="testing.rst" hash="435bfaab2b1d85cc3f0e9895fb49ccb7"/></dir><file name="phpunit.xml.dist" hash="b9ae0ee5ca5b26ef09506f77bc93f8be"/><dir name="src"><file name="BatchResults.php" hash="9601ffcd97c39a60ccb6d14bb008bbb3"/><file name="Client.php" hash="637bba764765ed5e7684f35532c0a4ed"/><file name="ClientInterface.php" hash="b5137b3a2e3d26ce9be986dfd13499e6"/><file name="Collection.php" hash="431f847865c9621f926b35f91a85dd2c"/><dir name="Cookie"><file name="CookieJar.php" hash="2981ed1414b29b66426eece64865c3ab"/><file name="CookieJarInterface.php" hash="51fd9da76a30957b484296f452c1da42"/><file name="FileCookieJar.php" hash="4aa9c86927b79cf2d978253e0410fb78"/><file name="SessionCookieJar.php" hash="b6c5adee6743072b733a8f3dba43761b"/><file name="SetCookie.php" hash="00db8c8eb2182fddf8afadaaaff20460"/></dir><dir name="Event"><file name="AbstractEvent.php" hash="ce6fb61cd25791ac865d4e84cd9759fd"/><file name="AbstractRequestEvent.php" hash="b18f06f7d9c95a0cc3ef99fdbf4dc203"/><file name="AbstractRetryableEvent.php" hash="2d170945ffa71a89f384ec58078e0c19"/><file name="AbstractTransferEvent.php" hash="89813f179d9cd109a17bebc28494d773"/><file name="BeforeEvent.php" hash="f2cd9a9ac1070b718540129f5909402e"/><file name="CompleteEvent.php" hash="a2b9b8e1e58f198601c22a7f2708b2c1"/><file name="Emitter.php" hash="ad466ad06deedb7331ce7cbd7764f8d9"/><file name="EmitterInterface.php" hash="50d4ccf2a59c4d70b6134873f6934c6e"/><file name="EndEvent.php" hash="1f076fa17483b2dd92098023e78069b6"/><file name="ErrorEvent.php" hash="9d0eaa82626bccaffac0a5f978c13fd8"/><file name="EventInterface.php" hash="2cf7086b80fad54dd9fb1bd66bd3af95"/><file name="HasEmitterInterface.php" hash="aca299bf20f91968a149cb89e117ddc9"/><file name="HasEmitterTrait.php" hash="fceb27761c90d7704cfc2e7ab31651b0"/><file name="ListenerAttacherTrait.php" hash="e71a23d493f4af08228d061dab2ee118"/><file name="ProgressEvent.php" hash="92e78daf64260f604add6dc7ae6b1c4c"/><file name="RequestEvents.php" hash="21dcaf3d461607486b356042032ac74d"/><file name="SubscriberInterface.php" hash="399edbac1d85763544dc54c597194345"/></dir><dir name="Exception"><file name="BadResponseException.php" hash="5d502016856c146aa47d0bbed5106ee1"/><file name="ClientException.php" hash="d1c7f54a71cb105131c0c22b20619bcb"/><file name="ConnectException.php" hash="9ff38d10d12832a15172c72c086143a4"/><file name="CouldNotRewindStreamException.php" hash="d73abf147478558ed008bbffe9985780"/><file name="ParseException.php" hash="4cc7b783e1a68628a7a85f2ad163e775"/><file name="RequestException.php" hash="583ee428fc5aed66ee3b68d05acd967d"/><file name="ServerException.php" hash="36ecb7a8e416e9633b10e677fa5a639e"/><file name="StateException.php" hash="7ed449728b670500dcbde0fad3d2c0c8"/><file name="TooManyRedirectsException.php" hash="9952c5877077fad22bed15fbe04a1ca7"/><file name="TransferException.php" hash="42ffaf70cff001e7b0cfc42ce2e8f8dd"/><file name="XmlParseException.php" hash="77d95d8fa4fb670b348f9c0318a6e107"/></dir><file name="HasDataTrait.php" hash="fb294d4af626e5dd9cf4dec0a146ba0b"/><dir name="Message"><file name="AbstractMessage.php" hash="305754413e6ce7869b6d5c1d711d531b"/><file name="AppliesHeadersInterface.php" hash="8e21471c8384c82f9953a5f35a8c1aad"/><file name="FutureResponse.php" hash="f272567b867f4ac209dd6c92eaf19056"/><file name="MessageFactory.php" hash="a325ba562846468a6267fda2031c7cec"/><file name="MessageFactoryInterface.php" hash="72c981182dc3381da7e1d764745fb50f"/><file name="MessageInterface.php" hash="396bfc61fe4cebb62fa47524c772b513"/><file name="MessageParser.php" hash="a73a7ad08d219ccbd98679a31328d249"/><file name="Request.php" hash="69893f14e5f063861b7a9229cde5d741"/><file name="RequestInterface.php" hash="375992a94f5e9926801bff04d9a97c33"/><file name="Response.php" hash="a5fafa750b85c8bfc94c8ecf22d33fef"/><file name="ResponseInterface.php" hash="650349ea50ba9118c92e34fa95ff7e27"/></dir><file name="Mimetypes.php" hash="98c49c56940197e757af27bb7e13a89b"/><file name="Pool.php" hash="324bd717b59e8aab19b6047b5715e04f"/><dir name="Post"><file name="MultipartBody.php" hash="f33a49bd4efe5ea4685365600bd383d7"/><file name="PostBody.php" hash="bb0f2cf36086a5ab8c83907468472d7f"/><file name="PostBodyInterface.php" hash="6b2f4ea74647a3b5c122366b50fd4931"/><file name="PostFile.php" hash="855721b2dd955fab148b96f609d66349"/><file name="PostFileInterface.php" hash="125d790f2656efe2005a46d98bbf9ccd"/></dir><file name="Query.php" hash="87ec30bde4145bb5086b0f905a37acc7"/><file name="QueryParser.php" hash="e756aae39877cf8137a7d61731a96c5b"/><file name="RequestFsm.php" hash="53643f146ac4a8af437f985b56537cf3"/><file name="RingBridge.php" hash="f5a096b469ac183996a00ccbe59d2ff1"/><dir name="Subscriber"><file name="Cookie.php" hash="9da9bde856192c9588ba7288508fe57c"/><file name="History.php" hash="0b69411a23222125a63b1168e872e7d1"/><file name="HttpError.php" hash="54881525a1132d20b9c94d2263c74c3c"/><file name="Mock.php" hash="7e03e626b83424724aae8e3a6aaaac4a"/><file name="Prepare.php" hash="ea2f4fad216b1050c6bc69c6c9de28a6"/><file name="Redirect.php" hash="5937a24086742fe1d71f70632cf74626"/></dir><file name="ToArrayInterface.php" hash="d6f685d05271786954881729ea03acdf"/><file name="Transaction.php" hash="4b09f99ae5c89731dd0ded5c7e270fce"/><file name="UriTemplate.php" hash="d1eb1c8d5d8e952ec5ebc5ec229ebd8b"/><file name="Url.php" hash="5aedbcee0366876653ff7740928d0b7b"/><file name="Utils.php" hash="7bfdfed1cfceac8fb74825e2e7d58ca2"/></dir><dir name="tests"><file name="BatchResultsTest.php" hash="2bece7f1aab2b56c7d0a95044d364455"/><file name="ClientTest.php" hash="3bfe6825efd15d6d92d08914b5d3e9ec"/><file name="CollectionTest.php" hash="a12026f2f56133a78abc670cdbc41ef8"/><dir name="Cookie"><file name="CookieJarTest.php" hash="0b4f9c735a6777d87ca27a88adba5ade"/><file name="FileCookieJarTest.php" hash="a53871768dfbdd5fdd1c810bbbc97081"/><file name="SessionCookieJarTest.php" hash="e6b75dee2a71c1cf330b3dfaa8510234"/><file name="SetCookieTest.php" hash="9e89006d954368173e74dac68a2188fd"/></dir><dir name="Event"><file name="AbstractEventTest.php" hash="d6c4101eb6d4f9785710bb75faeb0b21"/><file name="AbstractRequestEventTest.php" hash="7d7e5da804db3051bd646058fdcec31b"/><file name="AbstractRetryableEventTest.php" hash="bc0811545d15c9749b03c954bc22dc4b"/><file name="AbstractTransferEventTest.php" hash="f7933c0b89a3697373fd3e926d1b29cc"/><file name="BeforeEventTest.php" hash="e1e03516a4eafbd9c0399ed07092dbeb"/><file name="EmitterTest.php" hash="ad7982eab84ad5ce11f1f8bd04a01cc6"/><file name="ErrorEventTest.php" hash="b6274e50ba68c65f4951780215ef9b5e"/><file name="HasEmitterTraitTest.php" hash="2d1716214cdf9d89e433706292754293"/><file name="ListenerAttacherTraitTest.php" hash="61f0139442059871254ce2e921b7b13b"/><file name="ProgressEventTest.php" hash="6c9bcc84308a5093dc2d90c02d0a00d1"/><file name="RequestEventsTest.php" hash="16a17dc96688fd52d8ebadb3743561a3"/></dir><dir name="Exception"><file name="ParseExceptionTest.php" hash="9ae68634df9b8bd4da10db3ae3c98240"/><file name="RequestExceptionTest.php" hash="02c354306343fc46aa523d6c22b6a363"/><file name="XmlParseExceptionTest.php" hash="0fa1390ebeb36ded883e0e9f67131710"/></dir><file name="IntegrationTest.php" hash="77ecb08442b3edaf4a17dbc3b5eb6645"/><dir name="Message"><file name="AbstractMessageTest.php" hash="4d28bffec70b45a77d5ca8e5c60f7013"/><file name="FutureResponseTest.php" hash="4ec0c219593360e97d539b98982875a9"/><file name="MessageFactoryTest.php" hash="4a4da3a4dcaea6e470f0db5f36aef037"/><file name="MessageParserTest.php" hash="61023f113eafb82e1c519d4e007df5c0"/><file name="RequestTest.php" hash="a213727539122149ba0ef29f43dd5ab1"/><file name="ResponseTest.php" hash="b2eee9848eb5753370156db659fea334"/></dir><file name="MimetypesTest.php" hash="b97bc6a576e373a0f9ea663c67994606"/><file name="PoolTest.php" hash="1c36bb95c48e06a8676869fe3a00efb9"/><dir name="Post"><file name="MultipartBodyTest.php" hash="2f5b276dc55f4e6acc353f15da893090"/><file name="PostBodyTest.php" hash="bd99b38841137550692b0f7758a91e5c"/><file name="PostFileTest.php" hash="61126cad841a60e81eb44a455c3a2468"/></dir><file name="QueryParserTest.php" hash="263e1bfbd5a62751d31b37b1f7b6a366"/><file name="QueryTest.php" hash="22f2d92e4861f452ff44c885ad606cc6"/><file name="RequestFsmTest.php" hash="a1e93b846366335645bdbb527ba5307b"/><file name="RingBridgeTest.php" hash="96b4a0305c26b445fd2a60b866893847"/><file name="Server.php" hash="5f48ad0972b3bebb9fc45b65c6495e49"/><dir name="Subscriber"><file name="CookieTest.php" hash="3d6f6925dcadba10ede56d56b920eac4"/><file name="HistoryTest.php" hash="7ad048226fb91b77be6a191fd7f4c4b6"/><file name="HttpErrorTest.php" hash="f7ef34e0b5cf44bc4274097ff1d3c7df"/><file name="MockTest.php" hash="bac3eebae3a935597e1721b06aea4164"/><file name="PrepareTest.php" hash="9e17a67eec520969e0f3ab550708735a"/><file name="RedirectTest.php" hash="c1d1e3980709198e3b1cb17bf8867046"/></dir><file name="TransactionTest.php" hash="880f3a2f0941a608b15de98231ad5e63"/><file name="UriTemplateTest.php" hash="896b5959837d4094ce45d3d4f1a0efc4"/><file name="UrlTest.php" hash="023ba3e99932d6427cfefea2a28825e6"/><file name="UtilsTest.php" hash="39002d5af09b85b2ec765e6e4698f94e"/><file name="bootstrap.php" hash="2485c354ba16ebdece68b7036a68d90a"/><file name="perf.php" hash="1f2e05c29dea96304aa4ff3f07480801"/></dir><file name=".editorconfig" hash="7e66193b631a146c4a293759de00bf55"/><file name=".gitignore" hash="98d0c9e025ddeaea0512712bf442e39f"/><file name=".travis.yml" hash="fc89cdb2bffb45541e0ab0eaa564b136"/></dir><dir name="ringphp"><file name="CHANGELOG.md" hash="799347e9b288e0be8ea32f1a1abf8267"/><file name="LICENSE" hash="f9ddfabead2127b089fa60b1cf462ad7"/><file name="Makefile" hash="a17b9a1407c7959a90868c31f61e71f4"/><file name="README.rst" hash="e7a3f00179cfb4b0feee9f88b85e9fe9"/><file name="composer.json" hash="68665e93d1453df2865ed80265fff1ba"/><dir name="docs"><file name="Makefile" hash="777df5c7fafb2d6bfcb3c802e84adc3a"/><file name="client_handlers.rst" hash="6ca3e9e513f571032762133d8a162471"/><file name="client_middleware.rst" hash="681214a7d675a62a5ef3b86acfe37a20"/><file name="conf.py" hash="9f2affce54bd7d8c9a9007b59fc763e0"/><file name="futures.rst" hash="34a204df5751b48199926211066729eb"/><file name="index.rst" hash="a3671abf15c984498720c8899bb08394"/><file name="requirements.txt" hash="baa676171a96a28c1393d91384b1b7ef"/><file name="spec.rst" hash="a01eb587edb3e5114007cad16d235e02"/><file name="testing.rst" hash="6413148aac13954f10afe9f49312710d"/></dir><file name="phpunit.xml.dist" hash="a08ade01ef087db50589d228bb9eb420"/><dir name="src"><dir name="Client"><file name="ClientUtils.php" hash="0287d3512ac65d1f8e278e219274c847"/><file name="CurlFactory.php" hash="f909fb13038da4267441077c7b794500"/><file name="CurlHandler.php" hash="85e6686ed0f84679fc7e4f851c268b63"/><file name="CurlMultiHandler.php" hash="fc5c927d9981a88d28ec6071c437bfbf"/><file name="Middleware.php" hash="10b4e00d41ae53ab744c3df441813175"/><file name="MockHandler.php" hash="d9b3b00bd2e611076fb26f6706c6210c"/><file name="StreamHandler.php" hash="f7d46f8fe620052a8d45b454c42cedc0"/></dir><file name="Core.php" hash="f658655aef2402084df1ae4f1fe426aa"/><dir name="Exception"><file name="CancelledException.php" hash="b520e10d3139675532606f2a0334cca7"/><file name="CancelledFutureAccessException.php" hash="fa44e44ab519317596c0790a65d7bf38"/><file name="ConnectException.php" hash="de603e26f57a49cd5e4eab10e1686f15"/><file name="RingException.php" hash="965eeeb09364f0e0da13d094eefb4be3"/></dir><dir name="Future"><file name="BaseFutureTrait.php" hash="718e41c2d5cef401149c20ca371ad424"/><file name="CompletedFutureArray.php" hash="2ac2ca1892020c4608f2435fd0ebccd5"/><file name="CompletedFutureValue.php" hash="3c6ebdc379ed9af49fc185dd3d37c210"/><file name="FutureArray.php" hash="7f9b892d14899e73e491389c48301d4a"/><file name="FutureArrayInterface.php" hash="4871442a53bd711d89ac9823ee0d8df9"/><file name="FutureInterface.php" hash="eb26d9d532221a1425a8fac2aad96a9e"/><file name="FutureValue.php" hash="be5e06025b123a0d8a9acb8198c2f936"/><file name="MagicFutureTrait.php" hash="94f71a67eebbeaf6f85f778b73ae931d"/></dir></dir><dir name="tests"><dir name="Client"><file name="CurlFactoryTest.php" hash="acaa0fec3dcbc3128b80e020340ac669"/><file name="CurlHandlerTest.php" hash="21ec6983ba2f120240b61e9ab428198d"/><file name="CurlMultiHandlerTest.php" hash="06596c64487027c651f33b797e12a2f6"/><file name="MiddlewareTest.php" hash="100c93dbc7a3053493a42e3e42a244a5"/><file name="MockHandlerTest.php" hash="38eee76c7a84144938ad6704f87d805e"/><file name="Server.php" hash="fa6f211ad34231d3db7bd09a65e20669"/><file name="StreamHandlerTest.php" hash="29e30c9dbdd9728b000494d651e135cb"/><file name="server.js" hash="88d159b78be1b7fa9212209d4d38aef3"/></dir><file name="CoreTest.php" hash="5f7dca3a73b8831f4465fe8dab669118"/><dir name="Future"><file name="CompletedFutureArrayTest.php" hash="700f902ea1cce7e9001d01568ed581d8"/><file name="CompletedFutureValueTest.php" hash="f0f0fbd1dd1c4ac7c200cac5254f6cf8"/><file name="FutureArrayTest.php" hash="faa49dcfb801b774d54ee6c086011614"/><file name="FutureValueTest.php" hash="e7c40a1fd52bb1a58aaad00c8705b37f"/></dir><file name="bootstrap.php" hash="2b4a9ef0805593b41fc90c937437c53d"/></dir><file name=".gitignore" hash="2eb59fa71b9af27e9490e3f48045826d"/><file name=".travis.yml" hash="efa3829190500a4d0da1a423497a5cbe"/></dir><dir name="streams"><file name="CHANGELOG.rst" hash="4752dfe3eab49192fde530a2c2cdb4fe"/><file name="LICENSE" hash="f9ddfabead2127b089fa60b1cf462ad7"/><file name="Makefile" hash="648bf3b1ee188fe82ff842fbf8703ce6"/><file name="README.rst" hash="3e6fd1afbf41950f151ec71a248852ea"/><file name="composer.json" hash="b1a7224ca7d3dc8822599053a986ecb7"/><file name="phpunit.xml.dist" hash="2c20ff733adcdbfc654d37cd863c62a1"/><dir name="src"><file name="AppendStream.php" hash="6058885102fd00fb17b3ba541631bd07"/><file name="AsyncReadStream.php" hash="357a76d042d9f3e7aec1062f6e3a80d2"/><file name="BufferStream.php" hash="87ddb692697c7708e20e1145e7a63911"/><file name="CachingStream.php" hash="6fe89b215a313c235b9239e52378180b"/><file name="DroppingStream.php" hash="44a9450100c8a5f85f3b95563417ccf5"/><dir name="Exception"><file name="CannotAttachException.php" hash="ab4352ccfc2468697a1a86945bbdd1c8"/><file name="SeekException.php" hash="68575bcb6ba2622232ffe7e65450b165"/></dir><file name="FnStream.php" hash="d4bf7cd1da1124cf8c5a561cecdc5059"/><file name="GuzzleStreamWrapper.php" hash="048a82bcb138568e0bbbceaf5f886716"/><file name="InflateStream.php" hash="788a139a27c18d6bd886159e8ef8c10e"/><file name="LazyOpenStream.php" hash="2424456087e77c0cdf3ba02de4f15e9c"/><file name="LimitStream.php" hash="e2a9332833d878494ed30fb3d9f2b8a3"/><file name="MetadataStreamInterface.php" hash="802f0231c068d9f085f3c8653bb926d1"/><file name="NoSeekStream.php" hash="a35f7ea68c23cab4d246f7a2a0edcbe9"/><file name="NullStream.php" hash="a0b4395fc529242d414dd578c4c6f980"/><file name="PumpStream.php" hash="bb422e1161cc1ccf89951fea853f135a"/><file name="Stream.php" hash="f6efbdb369652e6351c8e837febe1795"/><file name="StreamDecoratorTrait.php" hash="775c6b0b12cec849cd1be3bab364006a"/><file name="StreamInterface.php" hash="4ed5919e395f7e4c568e600c800f378d"/><file name="Utils.php" hash="5ee03fd3c0c37082efab7dc213c9f455"/></dir><dir name="tests"><file name="AppendStreamTest.php" hash="7c1d5b1fd981a895240c532a3388cadd"/><file name="AsyncReadStreamTest.php" hash="3cf24da24619f99afd5361953a87a0c9"/><file name="BufferStreamTest.php" hash="e1dff59b71a28ca18f2bf64d88160f8e"/><file name="CachingStreamTest.php" hash="8857ec65fa6e1733a835d1bdecadf0df"/><file name="DroppingStreamTest.php" hash="cb27027850b6b6b87764e716f18568fc"/><dir name="Exception"><file name="SeekExceptionTest.php" hash="2396902960ff0282591d51fd5d40c2df"/></dir><file name="FnStreamTest.php" hash="10285ef01d4cdde83ee80b6132f05a30"/><file name="GuzzleStreamWrapperTest.php" hash="c3f6afb7e215827d5c02cc7ccb4a1848"/><file name="InflateStreamTest.php" hash="b34cbead206f2c39af9735299732b0c5"/><file name="LazyOpenStreamTest.php" hash="794d1631cdf4970a0e69d6ec18290b8a"/><file name="LimitStreamTest.php" hash="66aa7cda081a9d98b8520f942d8f959c"/><file name="NoSeekStreamTest.php" hash="23e203dceb9d70b248d9c3ff5a7aa19b"/><file name="NullStreamTest.php" hash="667a01a596537fe1743ccc237e29cb61"/><file name="PumpStreamTest.php" hash="4cfac47d1911e456bb024913883d675e"/><file name="StreamDecoratorTraitTest.php" hash="0a5247c33b45fd37eb6d4582fd33560e"/><file name="StreamTest.php" hash="a9651186306c293533de2c7d9575f23b"/><file name="UtilsTest.php" hash="f137bb850134805b09794ce79423d9ad"/></dir><file name=".gitignore" hash="af19642b4a44a0330a47893c52d33a78"/><file name=".travis.yml" hash="2559fbe72dc387ede606879bedf4a420"/></dir></dir><dir name="klarna"><dir name="checkout"><file name="CHANGELOG" hash="91420952d95dfdad96e4266509692d83"/><file name="README.md" hash="63e2414e02fca1699b4838c075d5498e"/><file name="composer.json" hash="7d20a8a2ab1a3fe9e00d6b090ba0f615"/><file name="composer.lock" hash="6cadb52f82047450228f075328b98d64"/><file name="phpunit.xml.dist" hash="2747e7fcf10168a681436dd6f766fac2"/><dir name="src"><dir name="Klarna"><dir name="Checkout"><file name="ApiErrorException.php" hash="2ee753ea8d9bb25c3042c39574740234"/><file name="BasicConnector.php" hash="c73f620bd0e425c1078b326e43e3e696"/><file name="ConnectionErrorException.php" hash="47ad168d89258dd0f50d346db2039e3e"/><file name="Connector.php" hash="af278e09f9ead41efaffb309db9d1d1c"/><file name="ConnectorException.php" hash="22fcdb95e62b2ac1d11c76367dc3fa21"/><file name="ConnectorInterface.php" hash="f8fc74692b80983902a4ccdf3e7386f0"/><file name="Digest.php" hash="2df60ce55deb399f27a9b8d26dd4c5eb"/><file name="Exception.php" hash="94bc7cfdb48499b11b275138d9130daf"/><dir name="HTTP"><file name="CURLFactory.php" hash="28b3477792209a92ffbcc6e45ba2c7a6"/><file name="CURLHandle.php" hash="7483b87c4f373224615d912093a47821"/><file name="CURLHandleInterface.php" hash="f9482c3e6dce14dddc147490a81b854a"/><file name="CURLHeaders.php" hash="7da7e965a475ad8af6cf2b4ca9f63720"/><file name="CURLTransport.php" hash="c10c719fb4dbad75f0a60156b3cea105"/><file name="Request.php" hash="adade3aec9d24b96e6a7e780fb66cbd0"/><file name="Response.php" hash="85b94dd9e111af17d6af712a2d84c871"/><file name="Transport.php" hash="bea26f81efd9ccba64747bd977d25674"/><file name="TransportInterface.php" hash="083d333e9086209df8c8ffdafa4ab5f5"/></dir><file name="Order.php" hash="1cb248c7fc97a9a6b66f3540f215a514"/><file name="RecurringOrder.php" hash="15aef53ffbfcac56db7b4db1f752dc96"/><file name="RecurringStatus.php" hash="9088af9342a91242f81431428148c537"/><file name="Resource.php" hash="095eba98dbebe0a564df348bbc92ee8e"/><file name="ResourceCreateableInterface.php" hash="d8418dc77baf443082cb37b1f3c7ceaf"/><file name="ResourceFetchableInterface.php" hash="738054af83559cc13486a0d4d1b2892d"/><file name="ResourceInterface.php" hash="fdc0847b0976a4a55eb08e426ab97bc0"/><file name="ResourceUpdateableInterface.php" hash="8db5c24203a7ef93c2b65917afaa095a"/><file name="UserAgent.php" hash="d8a95fa244fa563da7c70c5af8a7f14d"/></dir><file name="Checkout.php" hash="e9afded2fb815d67d7b5e84e9886eb9c"/></dir></dir><dir name="tests"><file name="CURLHandleStub.php" hash="659072a9abd2cd2f05f7f3ac1f479cfd"/><file name="ConnectorStub.php" hash="48ba5cf0b33831691bbf23e7f0c79a72"/><file name="CurlFactoryStub.php" hash="5cfecfc5407d1e265aed66aed8e8bbb8"/><file name="ResourceStub.php" hash="fedd5a3f13f59a23e05ed010b6fb40e3"/><file name="TransportStub.php" hash="5b7efacd3a5c6ae16285191a080e6095"/><file name="benchmark.php" hash="5448cba2cd19f3396339f937bc4c6f1c"/><file name="bootstrap.php" hash="b23ef14cfbd850597829b5690f2f0cb3"/><dir name="component"><file name="ComponentTest.php" hash="bd8e7b15cd46337f2786262d7d2571c4"/></dir><dir name="unit"><file name="BasicConnectorGetTest.php" hash="9f739591fa053970270c1e842d53e2ad"/><file name="BasicConnectorPostTest.php" hash="481c890453a487d30f45e4b6d6ed3e51"/><file name="BasicConnectorTest.php" hash="25aa4a248042d53d0bdf6dabd0867958"/><file name="ConnectorTest.php" hash="bc876a52b2f37fbc008c7b4285df8589"/><file name="DigestTest.php" hash="05477133bd7088ace133622efe397cb4"/><dir name="HTTP"><file name="CURLFactoryTest.php" hash="17b5e7ad8568c4d7256de6cd124a5a5c"/><file name="CURLHeadersTest.php" hash="98dc84fd0c3757bebf2773fea1ac50c1"/><file name="CURLTransportTest.php" hash="7d96b3a0eb15eae7ec50cf468f72c3f0"/><file name="RequestTest.php" hash="140bcf26ed2d2aa1470f9ad3ef79cf52"/><file name="ResponseTest.php" hash="a6af37498770440a57fee62fb3c6c916"/><file name="TransportTest.php" hash="86bd0abfab8063870b58f8abeefd8ac8"/></dir><file name="OrderTest.php" hash="6a4bde9dd694b878dfc693b43bb17df0"/><file name="OrderWithConnectorTest.php" hash="7e261c1d6ab78bf4a724e258284bd0b5"/><file name="RecurringOrderStatusTest.php" hash="13f65129470cf1e38f899f09aed57966"/><file name="RecurringOrderStatusWithConnectorTest.php" hash="21fc3a47034750cea08b4e09279b07a2"/><file name="RecurringOrderTest.php" hash="40238732ee6e904d01ad9a0d9cf85542"/><file name="RecurringOrderWithConnectorTest.php" hash="3887d126808187a99350de23a3a45d09"/><file name="ResourceTest.php" hash="26926cdabaac323a5a84f2a821aeaae5"/><file name="UserAgentTest.php" hash="d054c8f07213920074d2d0dd8111a3ce"/></dir></dir><file name=".coveralls.yml" hash="41f20d3e573f24542b73134a7512f886"/><file name=".travis.yml" hash="54097bfc0dfd7a07d6624099673bb0c0"/></dir><dir name="kco_rest"><file name="CHANGELOG.md" hash="208f165374e24dcb0d25b77a544d36cb"/><file name="README.md" hash="b846f2a8a7ed57d0b58df9156ae0f502"/><file name="composer.json" hash="faa4d6f172d4f9991cf2583e57f9b43c"/><file name="composer.lock" hash="f6e5372d1fbf47f4b22b12ea714b9e3e"/><file name="phpmd.xml" hash="a5580a49b530f5344336672d6746ecec"/><file name="phpunit.xml.dist" hash="31ce95f48574c9f1781c57a89639c864"/><dir name="src"><dir name="Klarna"><dir name="Rest"><dir name="Checkout"><file name="Order.php" hash="8fa6a4eea2806ea78b196c28ca17884c"/></dir><dir name="OrderManagement"><file name="Capture.php" hash="b0ba2956d952efc1b493097b1b7f405c"/><file name="Order.php" hash="1d84703716c990748207af0cd88f0858"/></dir><file name="Resource.php" hash="f4cf3b6e873eb5247e8f5e17fbb730b5"/><dir name="Transport"><file name="Connector.php" hash="17c740eb2c40710fafb8385972748e68"/><file name="ConnectorInterface.php" hash="30070bea834a4573b7c841ebc83c21e9"/><dir name="Exception"><file name="ConnectorException.php" hash="29517f30e4dfd619893668705eaabed4"/></dir><file name="ResponseValidator.php" hash="5f980714fd49b2707cd18d835d4f946b"/><file name="UserAgent.php" hash="d2887b1145810d822f53822cc4582a56"/><file name="UserAgentInterface.php" hash="71797f063041a353614f4a8e1c925acd"/></dir></dir></dir></dir><dir name="tests"><dir name="Component"><dir name="Checkout"><file name="OrderTest.php" hash="e791b99cf7ad21b701fb935c08570572"/></dir><dir name="OrderManagement"><file name="CaptureTest.php" hash="413b60a776bd2ac7a8fc293ad8eb5b68"/><file name="OrderTest.php" hash="a37006750840c38258d2c6d3f7dc70a5"/></dir><file name="ResourceTestCase.php" hash="babb3508460423b050c0c70094414640"/><file name="TestCase.php" hash="c34fa0b6059f12ca564e92651f08c499"/><dir name="Transport"><file name="ConnectorTest.php" hash="c2351c87144d9732fe512d91fd9cb53b"/></dir></dir><dir name="Unit"><dir name="Checkout"><file name="OrderTest.php" hash="c978a6fe5c552c472828fa13a2cdd40e"/></dir><dir name="OrderManagement"><file name="CaptureTest.php" hash="e503667762fe38fb4ce6b140da2aaa2f"/><file name="OrderTest.php" hash="cbbd9a2e9f4bf9f44cae72c379d4de8e"/></dir><file name="TestCase.php" hash="346385f78cff8af660550108a59ce125"/><dir name="Transport"><file name="ConnectorTest.php" hash="2df7452462b49ef1ad9727fa28f32e6a"/><dir name="Exception"><file name="ConnectorExceptionTest.php" hash="78a1ee706884f9834abe3517db21f5bd"/></dir><file name="ResponseValidatorTest.php" hash="ee4f1f92409134212ee4d1f8b7200947"/><file name="UserAgentTest.php" hash="2b293e44947a1f50ae4cfcc21d918208"/></dir></dir><file name="bootstrap.php" hash="4369bbf6d3e8ba5e4ec6bb3fd22111dc"/></dir><file name=".coveralls.yml" hash="cfb1992ca899f9e80c4b2dc20b6cb663"/><file name=".gitignore" hash="ba65a73716f4b4c41eb4c4c9dddc5773"/><file name=".travis.yml" hash="94e4f3722044ac6238a4782e9125c48f"/></dir><dir name="php-xmlrpc"><file name="CHANGELOG.md" hash="34616338644430ede35362877f24ec53"/><file name="README.md" hash="97d58e131115d3624577be4f6a8f8a41"/><file name="composer.json" hash="2916bde4b7207d582ffb71d1106d8be1"/><file name="composer.lock" hash="8aed35a631c3e91c07f828b4b5315775"/><dir name="src"><file name="CheckoutServiceRequest.php" hash="1bbfa94bb451ae6ab67e4a9a28d3b7cb"/><file name="CheckoutServiceResponse.php" hash="fbf775ee53bd939ec632ec538e9d5d29"/><file name="CurlHandle.php" hash="a3a6cb91454d298adac258e4dda6c9da"/><file name="CurlTransport.php" hash="75b41c945880005cc7b898057db7c869"/><file name="JSONStorage.php" hash="8451d9235285a3553da0e49827750010"/><dir name="Klarna"><file name="ArgumentNotSetException.php" hash="b0645325119b49d9c16614c53b9d57fb"/><file name="ConfigFieldMissingException.php" hash="1f72a53931d4c441feb6d8f9c95975c5"/><file name="DatabaseException.php" hash="3c5d7ef66320880d93a7a8c2185fca3d"/><file name="FileNotReadableException.php" hash="e82356ea1776383db3a2f4c4942e03cd"/><file name="FileNotWritableException.php" hash="390ccedba78ed15ffc3daa3d0bd688a2"/><file name="IncompleteConfigurationException.php" hash="174af536d82a6a9e9d5a64e2edd24820"/><file name="InvalidKlarnaAddrException.php" hash="93443fe6b4c7e3f17da50059e1494cb6"/><file name="InvalidLocaleException.php" hash="dc816df5008c64dde6917de1e17ebbe0"/><file name="InvalidPNOException.php" hash="e363f0271a2f9caa34ef08a55b452d6b"/><file name="InvalidPriceException.php" hash="9e27ccb455f13b52583dfeffe92083a6"/><file name="InvalidTypeException.php" hash="1849ea257c5450dc26f3e8f27267f79e"/><file name="MissingAddressException.php" hash="b42611d2e362135bc798cfaaf867bda0"/><file name="MissingCountryException.php" hash="ed5ff50afa029380dbc0fd39a39d9f4f"/><file name="MissingGoodslistException.php" hash="5008821a09414fc32ab537c849651f11"/><file name="PCStorageInvalidException.php" hash="3dab26096fc4d0492db3951bcc02cd32"/><file name="PClassException.php" hash="d0a8ab5a5b4a123adec626433330af99"/><file name="ShippingCountryException.php" hash="2fb350a928cdd4e6d616ce0c05fba23b"/><file name="UnknownAddressTypeException.php" hash="6e65d7bd43023fb6dcbd7a5eb87159c6"/><file name="UnknownCountryException.php" hash="3e3501de53a36505b6a885ac9258e272"/><file name="UnknownCurrencyException.php" hash="9a1e70da1914af2fbaec2b1d19c5118d"/><file name="UnknownEncodingException.php" hash="44ba99bc0c0f1ad477af54b17ff94806"/><file name="UnknownLanguageException.php" hash="53ec3bb77d44c11625330e1e5a4cefe2"/><file name="UnsupportedMarketException.php" hash="546f99e85e29904c1b16d62e90827947"/><file name="XMLParseException.php" hash="6aa045458ee89a44bf0073671c789ff2"/></dir><file name="Klarna.php" hash="da7f3bbf523f6dbe172a01ad4a7f3dc9"/><file name="KlarnaAddr.php" hash="d13408406b0fdc81dae3ee86e3532101"/><file name="KlarnaCalc.php" hash="b38bedd15876cfed264f9e983775ea9e"/><file name="KlarnaConfig.php" hash="c09171cffc11b506356c74d2c4b8d32a"/><file name="KlarnaCountry.php" hash="1a9869e603b9779decdc0ebe4a8c0682"/><file name="KlarnaCurrency.php" hash="da45e2242df05fe32d7fb3af870e11ca"/><file name="KlarnaEncoding.php" hash="6605d844da6cd648ac4e31517f307aaa"/><file name="KlarnaException.php" hash="d52cd44994f4bae53a1d7d8e00ecde2e"/><file name="KlarnaFlags.php" hash="7ef5cb0f8dc455cbad3eb79205c765f0"/><file name="KlarnaLanguage.php" hash="97cfc5ddee8c4edfa17538e7be7c832c"/><file name="KlarnaPClass.php" hash="edd80b089d5620bf325ce13e9c3f95ff"/><file name="MySQLStorage.php" hash="83ac31cb327b21b7cd3d93a63c701f5d"/><file name="PCStorage.php" hash="ce074b4209a152081e59768c21f2c430"/><file name="SQLStorage.php" hash="492a48d28af1db33387df38421157d73"/><file name="XMLStorage.php" hash="2c65c17a392669425569caada3c26041"/></dir><file name=".gitignore" hash="ef3d875be6c505522ebe1de42eb17041"/></dir></dir><dir name="phpxmlrpc"><dir name="phpxmlrpc"><file name="ChangeLog" hash="e8bed9f7ea49e8978ebaf3aefc3d6763"/><file name="INSTALL" hash="ba7e56d1c509ab359687d0eb410fd67f"/><file name="Makefile" hash="17ddf0d627285fb63facbac78a294e05"/><file name="NEWS" hash="7df954494213928899d7126e11697a45"/><file name="README" hash="c798e95ace121811ba088ab0243cf6f9"/><file name="composer.json" hash="cdbeec76c1564ea14cdb8f371311e45e"/><dir name="debugger"><file name="action.php" hash="42931f8af45654e5384cdcba581bbdd7"/><file name="common.php" hash="04dacdaede5fcec8ac0d37ab2207785a"/><file name="controller.php" hash="6ab12d0ded89b1610ae9542f00c5486f"/><file name="index.html" hash="8089385cfcdda1da8945e79b4cf80a8c"/><file name="index.php" hash="5a9325b5f898b459a8622795d37d9b43"/></dir><dir name="demo"><dir name="client"><file name="agesort.php" hash="4f0a8049081d6c253ffad45fc4ba917b"/><file name="client.php" hash="d7743d44411d62156daecc7b9287f9f1"/><file name="comment.php" hash="920db7c7c4e69c37d2e45b82933753a9"/><file name="introspect.php" hash="4dc4ebd25401311f0a5b4fa756eda363"/><file name="mail.php" hash="e2b2c8d14ff519ed23ec4493557512d2"/><file name="simple_call.php" hash="73b80792403a28b62d13f6900993c802"/><file name="which.php" hash="188cb73060de7c5674e84679e93ac569"/><file name="wrap.php" hash="c288c912dacf4325139807fe5596a50f"/><file name="zopetest.php" hash="9e9b5b5330448b8a58c58f3ece80e364"/></dir><file name="demo1.txt" hash="4d0040f1860d7e9fad0033601f37135f"/><file name="demo2.txt" hash="7094c2d2e8fe90fc4def6494c5e91dc3"/><file name="demo3.txt" hash="d2211f8d0c879618b802dbd8a0c96e4a"/><dir name="server"><file name="discuss.php" hash="b7c47dc9ac74ac57470f61ce94f9cd3d"/><file name="proxy.php" hash="d326fc21672da25a3b69a817f7c671c0"/><file name="server.php" hash="c89f65ede873dad49aaae3f6582e3218"/></dir><file name="vardemo.php" hash="dc8047a5813a4d00d15ca4bb566a0604"/></dir><dir name="doc"><file name="Makefile" hash="4226768d79be4cfc48104e9c9bdbbbaf"/><file name="announce1_0.txt" hash="26b371c4a22e6245f38569c7cd0fc9a1"/><file name="announce1_1.txt" hash="620fccd7cf3b319714d4ea33732c2f8e"/><file name="announce1b6.txt" hash="a2e26e7e2bea956525ce7f6ab1c5290e"/><file name="announce1b7.txt" hash="528d6b1db2ed3798a8073e4591ad332f"/><file name="announce1b8.txt" hash="4d95aebc6aa2ae12f921ff8d958f51ba"/><file name="announce1b9.txt" hash="31fd2b26eb547a38d33cfe964b1db570"/><file name="convert.php" hash="73e05138bb866f195da6d905c6a5bd2e"/><file name="custom.dsl" hash="cd2f1a75be042c0d090517a3dd21b694"/><file name="custom.fo.xsl" hash="51f80166f3a79ef78295d8e83e05c427"/><file name="custom.xsl" hash="82fc369c5c3d28ca2be21154437c71ff"/><file name="debugger.gif" hash="c20096b9fd98220287749fab62b33c9c"/><dir name="docbook-css"><file name="COPYING" hash="f7b4f97c7c0ee4f63b842363827ecafc"/><file name="CREDITS" hash="466edd5f3c17494d74609595d7453f26"/><file name="core.css" hash="c7b5938d6370c1b4288a55752cc4052c"/><file name="db-bindings.xml" hash="6537473b139ef8f62a22c758f772c85a"/><file name="driver.css" hash="e70c11500db9aead650ef332f1f0c4e9"/><dir name="l10n"><file name="de.css" hash="9e4b2f10e43a9b5f21219b5c2434f715"/><file name="en.css" hash="289dfc4c6e1b9889a89b017a89019ce1"/><file name="es.css" hash="c17bdd6a3ef23cf7b7c4feed43ee4bd6"/><file name="pl.css" hash="d1941f402ce4ad8a77a4c2d1b06b6a0d"/></dir><file name="l10n.css" hash="43ea9155e0030af51e9c4a8197bc8ab9"/><file name="mozilla.css" hash="1c743ddeb5af382cd99bbcf638f27fea"/><file name="opera.css" hash="6df8bbd426f9b39c5eacfa26c090a5dd"/><file name="styles.css" hash="2a0ecb1c2fc46dd67d0e23004324b8cd"/><file name="tables.css" hash="4d2ae9cf71e87b97c059682bb834ea1b"/><file name="xmlrpc.css" hash="5dc5aab6f796992f747d1eb05749dc95"/></dir><file name="highlight.php" hash="0932a4e30740b30d6b022afd24a2e637"/><file name="progxmlrpc.s.gif" hash="47174c9dbdea37549f2d2f40a19f611d"/><file name="xmlrpc_php.xml" hash="a759ec222dc6a8a9834cd52284f1ba5f"/><file name=".gitignore" hash="5cbe34a7623b5b0e2363b07202407aa3"/></dir><dir name="extras"><file name="rsakey.pem" hash="3da1212fd92b9e2ec696a3105e0a6c1f"/><file name="test.pl" hash="c4440b60b8deee55e0766f048bbd8251"/><file name="test.py" hash="0448fb28b323a9fbd67061e29c7b8e3e"/><file name="workspace.testPhpServer.fttb" hash="e304642683b2adecad685ff9d9eabfbe"/></dir><dir name="lib"><file name="xmlrpc.inc" hash="92c03c2eb0ed11e9a75d9af23963f83a"/><file name="xmlrpc_wrappers.inc" hash="555d43b7e509d7d11aaf1adf2dd953df"/><file name="xmlrpcs.inc" hash="a6aecddab0c4cdfda553d61c920d2218"/></dir><dir name="test"><dir name="PHPUnit"><file name="Assert.php" hash="e96bdaa7e3383cbabe6804e295be0cdc"/><file name="TestCase.php" hash="b6f1e8c20f5b79ee2dcde059a1ea2fa3"/><file name="TestDecorator.php" hash="d23ff0aa7155381a746e5c20c54f6bb5"/><file name="TestFailure.php" hash="ab691542c9ebd1e3674be1693004a948"/><file name="TestListener.php" hash="6f10a3f83af0a1f0709abd60d9661e11"/><file name="TestResult.php" hash="b060fcea2f0d90b5d6507100b8235ff7"/><file name="TestSuite.php" hash="9a152d371493d4a3b7ab2c58c7a137b6"/><file name="license.txt" hash="a45bb1bbeed9e26b26c5763df1d3913d"/></dir><file name="benchmark.php" hash="099cd289c1ea64b2cec4255e77b9ad14"/><file name="parse_args.php" hash="3973ac6727862385c4d203951ba023d2"/><file name="phpunit.php" hash="727ced027153a9a21e21b1e8cc44f636"/><file name="testsuite.php" hash="7ab095eff09b518537ac4942a0779eab"/><file name="verify_compat.php" hash="e2916c1fe04347385419e809ee38c730"/></dir><file name=".gitignore" hash="f734cd40b8ec373c5ca7cde337c13b5e"/><file name=".travis.yml" hash="41b6718ec872e865112bed81805496e5"/></dir></dir><dir name="react"><dir name="promise"><file name="CHANGELOG.md" hash="2b1f02283ecd949264f900170ea8b3fc"/><file name="LICENSE" hash="e46a0a186cdc556ce7574113f2653180"/><file name="README.md" hash="bbcb0875dc0201cdfe6573443d2bea14"/><file name="composer.json" hash="0ca73967404075ef80fc494b370ddefc"/><file name="phpunit.xml.dist" hash="7d9482f8cd074b464c0f57496e727d5e"/><dir name="src"><file name="CancellablePromiseInterface.php" hash="1d8feeea39ac3cd66f2c041f0f6589f0"/><file name="Deferred.php" hash="a922b6f8f9d7f8525ddc2c5704eb1377"/><file name="ExtendedPromiseInterface.php" hash="1a287908208d527bbbe6e3128af84d26"/><file name="FulfilledPromise.php" hash="773d525b931f7ceb4e1cfa1fec923462"/><file name="LazyPromise.php" hash="a34e5f6bbc510757cb2d41ca41b846e5"/><file name="Promise.php" hash="f7ff3401d5f36e6e4bd613c859fd8d76"/><file name="PromiseInterface.php" hash="488da4a38d218ba8fb3eaea05dd1c264"/><file name="PromisorInterface.php" hash="d7bf061df9395a7cf5fd082805e42c7a"/><file name="RejectedPromise.php" hash="55b2be16604c09ed1add52d1c49dc56c"/><file name="UnhandledRejectionException.php" hash="b814c8ef9bd08d1d41782104aa6ef8f9"/><file name="functions.php" hash="ce714c7d1e64104fa43c043555078a8f"/><file name="functions_include.php" hash="4da7302e4ed0862c6fa885a3c66bcd01"/></dir><dir name="tests"><file name="DeferredTest.php" hash="5fb76a8bd96a79598d69afb9bcc8c1e1"/><file name="FulfilledPromiseTest.php" hash="20e21c11b19ec8b46a47fc072e7a9e0c"/><file name="FunctionAllTest.php" hash="c2ee53ecc37d95fc55c57912477c215a"/><file name="FunctionAnyTest.php" hash="23565b2dfd5969a213862a7f061b2e03"/><file name="FunctionCheckTypehintTest.php" hash="b48395c507606f68d32150ddfc28ae0d"/><file name="FunctionMapTest.php" hash="287d180adefce847aa222bdb05025eb9"/><file name="FunctionRaceTest.php" hash="3d9edf2ca2f2253496c8cf0ecba7c5d6"/><file name="FunctionReduceTest.php" hash="1b9bc983e9900e29f187475072d10cd9"/><file name="FunctionRejectTest.php" hash="4209c5e6b051b3c065b4a8e1e32949dd"/><file name="FunctionResolveTest.php" hash="4836614d978e9b75b8857ed92e837468"/><file name="FunctionSomeTest.php" hash="78c1ad99506be879d910617d744274c0"/><file name="LazyPromiseTest.php" hash="f3f8f1e47ebf5097d726086c785a7b20"/><dir name="PromiseAdapter"><file name="CallbackPromiseAdapter.php" hash="3429d665b2a9dd4a9d3606af69db5c17"/><file name="PromiseAdapterInterface.php" hash="a02b0b5e52a71149688f7bef8894fcda"/></dir><dir name="PromiseTest"><file name="CancelTestTrait.php" hash="eab33b77dca722a733911b1e94ffb16c"/><file name="FullTestTrait.php" hash="e82099e47b8fe984b7f5ff832c811b9b"/><file name="NotifyTestTrait.php" hash="314ba252939f84fd2885064409d4247d"/><file name="PromiseFulfilledTestTrait.php" hash="d83a22d7b2792a2e067447533ef80598"/><file name="PromisePendingTestTrait.php" hash="ca94a285a8ac4b0f402f9915025997a9"/><file name="PromiseRejectedTestTrait.php" hash="286f6bd7327a649c553096b4cb899642"/><file name="PromiseSettledTestTrait.php" hash="2b4de2fa354193aa5d577d2996713eb0"/><file name="RejectTestTrait.php" hash="11d13fb0d33113764df7ad81981e3ff5"/><file name="ResolveTestTrait.php" hash="e8786f5b09a518feb6cb991ec28093df"/></dir><file name="PromiseTest.php" hash="7bbbd1f2acb6e6187b42751a093fb057"/><file name="RejectedPromiseTest.php" hash="e72e7e3d7bc3e7779ea1b8383604a263"/><dir name="Stub"><file name="CallableStub.php" hash="aa2c5ca5528276a340c013c950c3c792"/></dir><file name="TestCase.php" hash="4c1e0a05effe1354008b82a9c903b5b9"/><file name="bootstrap.php" hash="ac271c71e8caa31202d61356508b7c32"/></dir><file name=".gitignore" hash="dbc957e3a33427be6ecce1f274683ed4"/><file name=".travis.yml" hash="ae054f04b30abca8bfdb9f0726d02c2d"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="KCO"><file name="dropdown.png" hash="a408e177ff3130bdb4bb491935700df4"/><file name="kco.css" hash="29ab03ae78f7a5023ab8344c41331a52"/><file name="klarna_simplifying.png" hash="280abffdadbbd0d372a8505c4c83a9e8"/><file name="loader.gif" hash="5e51d58f5d9bd09ab814d9ca9347d3b9"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Avenla_KlarnaCheckout.xml" hash="22b47fd5cc2c12370457a51ffff752d6"/></dir></target><target name="magelocale"><dir name="fi_FI"><file name="Avenla_KlarnaCheckout.csv" hash="8a4fcffae0d3fd50eb110b84426a16f1"/></dir><dir name="sv_SE"><file name="Avenla_KlarnaCheckout.csv" hash="b43b58d7218419b73436356fbeef41fa"/></dir></target></contents>
23
  <compatible/>
24
- <dependencies><required><php><min>5.2.16</min><max>6.0.0</max></php></required></dependencies>
25
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Avenla_KlarnaCheckout</name>
4
+ <version>1.3.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://productdownloads.avenla.com/magento-modules/klarna-checkout/">Custom license by Avenla Oy</license>
7
  <channel>community</channel>
9
  <summary>Klarna Checkout payment module</summary>
10
  <description>http://productdownloads.avenla.com/magento-modules/klarna-checkout/&#xD;
11
  &#xD;
12
+ For questions and support - klarna-support@avenla.com&#xD;
13
+ </description>
14
+ <notes>- Fixed return url&#xD;
15
+ - Fixed console errors</notes>
 
 
 
16
  <authors><author><name>Avenla Oy</name><user>Avenla</user><email>klarna-support@avenla.fi</email></author></authors>
17
+ <date>2017-05-02</date>
18
+ <time>18:52:33</time>
19
+ <contents><target name="magecommunity"><dir name="Avenla"><dir name="KlarnaCheckout"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Field"><file name="Pclass.php" hash="a3a8781d74d03bdee2159362ff30c4b8"/></dir><dir name="Fieldset"><file name="Info.php" hash="b48e54b41d282319fb5da50a7084eb01"/></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Price.php" hash="a04ec018c772d419cbb6de9ec1498870"/></dir></dir><dir name="KCO"><file name="Confirmation.php" hash="dbfafab6a02ad208a21f9759fae3469a"/><file name="Info.php" hash="82324c42c39052e4234a091015bf54ec"/><file name="Newsletter.php" hash="b34e7f244d304f2a35fc02e7427d005c"/></dir><file name="KCO.php" hash="1847586cfe9d1af85b811b2587e8bc16"/><dir name="Widgets"><file name="Logo.php" hash="599c7567d37b57a641523e280d4c2ac1"/><file name="Methods.php" hash="f87ce319be84ed91d9fee7baada6cc46"/></dir></dir><dir name="Helper"><file name="Data.php" hash="63190d8ee7b66697898bb596c3b828b1"/></dir><dir name="Model"><file name="Api.php" hash="94f3b99679bf9b01d251c826a9cebc84"/><file name="Config.php" hash="b7aac2cbb9e60cc9c559f9210f04a37c"/><file name="Newsletter.php" hash="1b2c3aea2f00fd6105f910d6cc1be8b4"/><file name="Observer.php" hash="75edcdb4d9daef34bcaeddd275e6837d"/><dir name="Order"><file name="Abstract.php" hash="167226be99bd37723938541c4ef40300"/><file name="Kcov2.php" hash="6ba962070ab753198b8cc9f9da22c30b"/><file name="Kcov3.php" hash="bdc89b9d4adbeec2f65a98446a623fa1"/></dir><dir name="Payment"><file name="Abstract.php" hash="a098d6a89cab566007da63e4d39e7d84"/><file name="KCO.php" hash="6a9bdf466fae07e436ad61286809e88b"/><file name="KCOv3.php" hash="f21068c65929a52233d1b9276fc6e660"/></dir><dir name="Source"><file name="AnalyticsType.php" hash="eeb28d28fa67968547767569357525d2"/><file name="Api.php" hash="5765ff370fc6b90a1780473d884c0fe7"/><file name="FlowType.php" hash="c1b1b9d83148d1e5260c68ff3a0cca92"/><file name="Kcolayout.php" hash="bccb8aeca2ea38a2273a3c7e8e87dd10"/><file name="Pplayout.php" hash="277646254f006271ed0737c8c8558355"/><file name="Ppwidget.php" hash="438ce91b57322262999da94f0c697020"/><file name="Servermode.php" hash="c29f0359cea13cc67303dda5aa782a75"/><file name="Shippingmethods.php" hash="ee8144bb334cfcaf4cbf5ec9a80bb648"/><file name="Taxclass.php" hash="e8b03031ff58be49feb3ebdab3105d7d"/></dir><file name="Validator.php" hash="e3f8aa6239b942e4ed70fd32dcc625c4"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="KlarnaCheckout"><file name="KCOController.php" hash="79cb89fe9c165e5f5cce98f64bc100a5"/></dir></dir><file name="CartController.php" hash="22162fe250577eaddb4c65ea9dd6bf9b"/><file name="KCOController.php" hash="98dddc5088df9cfa7ed5513d6c8ab2d6"/></dir><dir name="etc"><file name="config.xml" hash="989e792ee59bd038fb84f8e771451995"/><file name="system.xml" hash="f1e631f76f3f496a7d002b02e8fd581a"/><file name="widget.xml" hash="67d36573c6b2575eb1132f7f3857daf3"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="KCO"><file name="info.phtml" hash="9fb39ec87bf20a23dd84b2bc8fd31c66"/><dir name="system"><dir name="config"><dir name="field"><file name="pclass.phtml" hash="e391f8e949fe7a6a981cc05cd5ebb01e"/></dir><dir name="fieldset"><file name="info.phtml" hash="91192438f9b4fea9fb27d969ce87addd"/></dir></dir></dir></dir></dir><dir name="layout"><file name="KCO.xml" hash="4a9068eefb3de4a964cdf1e462832ebe"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="KCO"><file name="KCO.phtml" hash="b4bb3f8736f6dc412efffc5c9b796ff6"/><dir name="cart"><file name="crosssell.phtml" hash="e7f78cb99e14ab680b794524b8666812"/><file name="giftmessage.phtml" hash="a67e85c504547abc4944c462ed32bf41"/><dir name="item"><file name="default.phtml" hash="9190b3fad2f2ed57ea2ffbed2e1faa02"/></dir><file name="shipping.phtml" hash="b940c98adec4e3fd455ffc04094a1a4f"/></dir><file name="cart.phtml" hash="dc1e5164a5ae03bba544b14854b9c89a"/><file name="cart_twocolumns.phtml" hash="69f28c84fa72b6c0c14809dfe6f2112c"/><dir name="catalog"><dir name="product"><file name="price.phtml" hash="2179af266b4b5ed222a8416f2db01f88"/></dir></dir><file name="info.phtml" hash="72bd0c5f9f608bb9d0b868024542b19e"/><file name="link.phtml" hash="8a5e1fc0b237b735a93cd11bf5b444ad"/><file name="newsletter.phtml" hash="87c3730ed525d3810a5df0a9180bf993"/><dir name="onepage"><file name="link.phtml" hash="a05ab2ebf5f0ed225c2f3967e2bceced"/></dir><dir name="widget"><file name="methods.phtml" hash="7415fafbd8f2acf134c4ac81c30f4bd4"/></dir></dir></dir><dir name="layout"><file name="KCO.xml" hash="519b9bd7c8018423aeb003a04897191f"/></dir></dir></dir></dir></target><target name="magelib"><dir name="KlarnaCheckout"><file name="autoload.php" hash="a04f0cfab6dcb59791f65854de6b8a56"/><dir name="composer"><file name="ClassLoader.php" hash="9c1e7fe1a9eb1693e07ee4420ca5361e"/><file name="LICENSE" hash="084a034acbad39464e3df608c6dc064f"/><file name="autoload_classmap.php" hash="0db52a7175044ac72c0a7838f679c961"/><file name="autoload_files.php" hash="2e85332f49b950e0803a44b0b32e2e45"/><file name="autoload_namespaces.php" hash="3a9c4765a647c4e74ec3d6ced23cdd90"/><file name="autoload_psr4.php" hash="4bad687ad1856ec1deb198da8e7c9266"/><file name="autoload_real.php" hash="d1c1309f920cddc66d576ba36e51dd8d"/><file name="installed.json" hash="def63aad3a0b9070755e7a7de05050b1"/></dir><dir name="guzzlehttp"><dir name="guzzle"><file name="CHANGELOG.md" hash="acc188c927e6bf09d6f9d018ca24d1e8"/><file name="LICENSE" hash="f9ddfabead2127b089fa60b1cf462ad7"/><file name="Makefile" hash="317955136cb3575149363d0b7174dbe5"/><file name="README.md" hash="d1df21412e1e3a6dd1d2d5b796db9be7"/><file name="UPGRADING.md" hash="8d0d9048e11ed2b5e79b1ad86db91d48"/><dir name="build"><file name="packager.php" hash="ab4669be9765aecb479f77c67b98b276"/></dir><file name="composer.json" hash="67f18c5c530a0534f1164fb1ff040444"/><dir name="docs"><file name="Makefile" hash="12a604d6e6b876e11714735cdc6403f1"/><dir name="_static"><file name="guzzle-icon.png" hash="18e05d325a1a51de498fc4a32b15ca48"/><file name="logo.png" hash="f87c876737dd9b36664e6055196c1341"/></dir><dir name="_templates"><file name="nav_links.html" hash="fb4639874978e92069d3d58405369a40"/></dir><file name="clients.rst" hash="f49ec91ff685e740a00dc295297a2660"/><file name="conf.py" hash="24f0dcb8445fe1e4f2c05aa782f9385e"/><file name="events.rst" hash="c1615c7cd00adb02cdebe755b7bb1b18"/><file name="faq.rst" hash="94e3a8cefa5068ebea9223b2ab9cb194"/><file name="handlers.rst" hash="e92fd255c14344536d326b19fcd6ae70"/><file name="http-messages.rst" hash="37e5a669761894e39e32f6cc6da9ede3"/><file name="index.rst" hash="ebb9c7abc88df5051c5eb2419fbb740a"/><file name="overview.rst" hash="0b8656757de9b8f5b0b4f3c6179755db"/><file name="quickstart.rst" hash="c8777d83b78d55453bf8c2ae22a9beb4"/><file name="requirements.txt" hash="444d2df1b594a091c02af61aa48e3ad9"/><file name="streams.rst" hash="c074299618766206fdf8273e89c36fe3"/><file name="testing.rst" hash="435bfaab2b1d85cc3f0e9895fb49ccb7"/></dir><file name="phpunit.xml.dist" hash="b9ae0ee5ca5b26ef09506f77bc93f8be"/><dir name="src"><file name="BatchResults.php" hash="9601ffcd97c39a60ccb6d14bb008bbb3"/><file name="Client.php" hash="637bba764765ed5e7684f35532c0a4ed"/><file name="ClientInterface.php" hash="b5137b3a2e3d26ce9be986dfd13499e6"/><file name="Collection.php" hash="431f847865c9621f926b35f91a85dd2c"/><dir name="Cookie"><file name="CookieJar.php" hash="2981ed1414b29b66426eece64865c3ab"/><file name="CookieJarInterface.php" hash="51fd9da76a30957b484296f452c1da42"/><file name="FileCookieJar.php" hash="4aa9c86927b79cf2d978253e0410fb78"/><file name="SessionCookieJar.php" hash="b6c5adee6743072b733a8f3dba43761b"/><file name="SetCookie.php" hash="00db8c8eb2182fddf8afadaaaff20460"/></dir><dir name="Event"><file name="AbstractEvent.php" hash="ce6fb61cd25791ac865d4e84cd9759fd"/><file name="AbstractRequestEvent.php" hash="b18f06f7d9c95a0cc3ef99fdbf4dc203"/><file name="AbstractRetryableEvent.php" hash="2d170945ffa71a89f384ec58078e0c19"/><file name="AbstractTransferEvent.php" hash="89813f179d9cd109a17bebc28494d773"/><file name="BeforeEvent.php" hash="f2cd9a9ac1070b718540129f5909402e"/><file name="CompleteEvent.php" hash="a2b9b8e1e58f198601c22a7f2708b2c1"/><file name="Emitter.php" hash="ad466ad06deedb7331ce7cbd7764f8d9"/><file name="EmitterInterface.php" hash="50d4ccf2a59c4d70b6134873f6934c6e"/><file name="EndEvent.php" hash="1f076fa17483b2dd92098023e78069b6"/><file name="ErrorEvent.php" hash="9d0eaa82626bccaffac0a5f978c13fd8"/><file name="EventInterface.php" hash="2cf7086b80fad54dd9fb1bd66bd3af95"/><file name="HasEmitterInterface.php" hash="aca299bf20f91968a149cb89e117ddc9"/><file name="HasEmitterTrait.php" hash="fceb27761c90d7704cfc2e7ab31651b0"/><file name="ListenerAttacherTrait.php" hash="e71a23d493f4af08228d061dab2ee118"/><file name="ProgressEvent.php" hash="92e78daf64260f604add6dc7ae6b1c4c"/><file name="RequestEvents.php" hash="21dcaf3d461607486b356042032ac74d"/><file name="SubscriberInterface.php" hash="399edbac1d85763544dc54c597194345"/></dir><dir name="Exception"><file name="BadResponseException.php" hash="5d502016856c146aa47d0bbed5106ee1"/><file name="ClientException.php" hash="d1c7f54a71cb105131c0c22b20619bcb"/><file name="ConnectException.php" hash="9ff38d10d12832a15172c72c086143a4"/><file name="CouldNotRewindStreamException.php" hash="d73abf147478558ed008bbffe9985780"/><file name="ParseException.php" hash="4cc7b783e1a68628a7a85f2ad163e775"/><file name="RequestException.php" hash="583ee428fc5aed66ee3b68d05acd967d"/><file name="ServerException.php" hash="36ecb7a8e416e9633b10e677fa5a639e"/><file name="StateException.php" hash="7ed449728b670500dcbde0fad3d2c0c8"/><file name="TooManyRedirectsException.php" hash="9952c5877077fad22bed15fbe04a1ca7"/><file name="TransferException.php" hash="42ffaf70cff001e7b0cfc42ce2e8f8dd"/><file name="XmlParseException.php" hash="77d95d8fa4fb670b348f9c0318a6e107"/></dir><file name="HasDataTrait.php" hash="fb294d4af626e5dd9cf4dec0a146ba0b"/><dir name="Message"><file name="AbstractMessage.php" hash="305754413e6ce7869b6d5c1d711d531b"/><file name="AppliesHeadersInterface.php" hash="8e21471c8384c82f9953a5f35a8c1aad"/><file name="FutureResponse.php" hash="f272567b867f4ac209dd6c92eaf19056"/><file name="MessageFactory.php" hash="a325ba562846468a6267fda2031c7cec"/><file name="MessageFactoryInterface.php" hash="72c981182dc3381da7e1d764745fb50f"/><file name="MessageInterface.php" hash="396bfc61fe4cebb62fa47524c772b513"/><file name="MessageParser.php" hash="a73a7ad08d219ccbd98679a31328d249"/><file name="Request.php" hash="69893f14e5f063861b7a9229cde5d741"/><file name="RequestInterface.php" hash="375992a94f5e9926801bff04d9a97c33"/><file name="Response.php" hash="a5fafa750b85c8bfc94c8ecf22d33fef"/><file name="ResponseInterface.php" hash="650349ea50ba9118c92e34fa95ff7e27"/></dir><file name="Mimetypes.php" hash="98c49c56940197e757af27bb7e13a89b"/><file name="Pool.php" hash="324bd717b59e8aab19b6047b5715e04f"/><dir name="Post"><file name="MultipartBody.php" hash="f33a49bd4efe5ea4685365600bd383d7"/><file name="PostBody.php" hash="bb0f2cf36086a5ab8c83907468472d7f"/><file name="PostBodyInterface.php" hash="6b2f4ea74647a3b5c122366b50fd4931"/><file name="PostFile.php" hash="855721b2dd955fab148b96f609d66349"/><file name="PostFileInterface.php" hash="125d790f2656efe2005a46d98bbf9ccd"/></dir><file name="Query.php" hash="87ec30bde4145bb5086b0f905a37acc7"/><file name="QueryParser.php" hash="e756aae39877cf8137a7d61731a96c5b"/><file name="RequestFsm.php" hash="53643f146ac4a8af437f985b56537cf3"/><file name="RingBridge.php" hash="f5a096b469ac183996a00ccbe59d2ff1"/><dir name="Subscriber"><file name="Cookie.php" hash="9da9bde856192c9588ba7288508fe57c"/><file name="History.php" hash="0b69411a23222125a63b1168e872e7d1"/><file name="HttpError.php" hash="54881525a1132d20b9c94d2263c74c3c"/><file name="Mock.php" hash="7e03e626b83424724aae8e3a6aaaac4a"/><file name="Prepare.php" hash="ea2f4fad216b1050c6bc69c6c9de28a6"/><file name="Redirect.php" hash="5937a24086742fe1d71f70632cf74626"/></dir><file name="ToArrayInterface.php" hash="d6f685d05271786954881729ea03acdf"/><file name="Transaction.php" hash="4b09f99ae5c89731dd0ded5c7e270fce"/><file name="UriTemplate.php" hash="d1eb1c8d5d8e952ec5ebc5ec229ebd8b"/><file name="Url.php" hash="5aedbcee0366876653ff7740928d0b7b"/><file name="Utils.php" hash="7bfdfed1cfceac8fb74825e2e7d58ca2"/></dir><dir name="tests"><file name="BatchResultsTest.php" hash="2bece7f1aab2b56c7d0a95044d364455"/><file name="ClientTest.php" hash="3bfe6825efd15d6d92d08914b5d3e9ec"/><file name="CollectionTest.php" hash="a12026f2f56133a78abc670cdbc41ef8"/><dir name="Cookie"><file name="CookieJarTest.php" hash="0b4f9c735a6777d87ca27a88adba5ade"/><file name="FileCookieJarTest.php" hash="a53871768dfbdd5fdd1c810bbbc97081"/><file name="SessionCookieJarTest.php" hash="e6b75dee2a71c1cf330b3dfaa8510234"/><file name="SetCookieTest.php" hash="9e89006d954368173e74dac68a2188fd"/></dir><dir name="Event"><file name="AbstractEventTest.php" hash="d6c4101eb6d4f9785710bb75faeb0b21"/><file name="AbstractRequestEventTest.php" hash="7d7e5da804db3051bd646058fdcec31b"/><file name="AbstractRetryableEventTest.php" hash="bc0811545d15c9749b03c954bc22dc4b"/><file name="AbstractTransferEventTest.php" hash="f7933c0b89a3697373fd3e926d1b29cc"/><file name="BeforeEventTest.php" hash="e1e03516a4eafbd9c0399ed07092dbeb"/><file name="EmitterTest.php" hash="ad7982eab84ad5ce11f1f8bd04a01cc6"/><file name="ErrorEventTest.php" hash="b6274e50ba68c65f4951780215ef9b5e"/><file name="HasEmitterTraitTest.php" hash="2d1716214cdf9d89e433706292754293"/><file name="ListenerAttacherTraitTest.php" hash="61f0139442059871254ce2e921b7b13b"/><file name="ProgressEventTest.php" hash="6c9bcc84308a5093dc2d90c02d0a00d1"/><file name="RequestEventsTest.php" hash="16a17dc96688fd52d8ebadb3743561a3"/></dir><dir name="Exception"><file name="ParseExceptionTest.php" hash="9ae68634df9b8bd4da10db3ae3c98240"/><file name="RequestExceptionTest.php" hash="02c354306343fc46aa523d6c22b6a363"/><file name="XmlParseExceptionTest.php" hash="0fa1390ebeb36ded883e0e9f67131710"/></dir><file name="IntegrationTest.php" hash="77ecb08442b3edaf4a17dbc3b5eb6645"/><dir name="Message"><file name="AbstractMessageTest.php" hash="4d28bffec70b45a77d5ca8e5c60f7013"/><file name="FutureResponseTest.php" hash="4ec0c219593360e97d539b98982875a9"/><file name="MessageFactoryTest.php" hash="4a4da3a4dcaea6e470f0db5f36aef037"/><file name="MessageParserTest.php" hash="61023f113eafb82e1c519d4e007df5c0"/><file name="RequestTest.php" hash="a213727539122149ba0ef29f43dd5ab1"/><file name="ResponseTest.php" hash="b2eee9848eb5753370156db659fea334"/></dir><file name="MimetypesTest.php" hash="b97bc6a576e373a0f9ea663c67994606"/><file name="PoolTest.php" hash="1c36bb95c48e06a8676869fe3a00efb9"/><dir name="Post"><file name="MultipartBodyTest.php" hash="2f5b276dc55f4e6acc353f15da893090"/><file name="PostBodyTest.php" hash="bd99b38841137550692b0f7758a91e5c"/><file name="PostFileTest.php" hash="61126cad841a60e81eb44a455c3a2468"/></dir><file name="QueryParserTest.php" hash="263e1bfbd5a62751d31b37b1f7b6a366"/><file name="QueryTest.php" hash="22f2d92e4861f452ff44c885ad606cc6"/><file name="RequestFsmTest.php" hash="a1e93b846366335645bdbb527ba5307b"/><file name="RingBridgeTest.php" hash="96b4a0305c26b445fd2a60b866893847"/><file name="Server.php" hash="5f48ad0972b3bebb9fc45b65c6495e49"/><dir name="Subscriber"><file name="CookieTest.php" hash="3d6f6925dcadba10ede56d56b920eac4"/><file name="HistoryTest.php" hash="7ad048226fb91b77be6a191fd7f4c4b6"/><file name="HttpErrorTest.php" hash="f7ef34e0b5cf44bc4274097ff1d3c7df"/><file name="MockTest.php" hash="bac3eebae3a935597e1721b06aea4164"/><file name="PrepareTest.php" hash="9e17a67eec520969e0f3ab550708735a"/><file name="RedirectTest.php" hash="c1d1e3980709198e3b1cb17bf8867046"/></dir><file name="TransactionTest.php" hash="880f3a2f0941a608b15de98231ad5e63"/><file name="UriTemplateTest.php" hash="896b5959837d4094ce45d3d4f1a0efc4"/><file name="UrlTest.php" hash="023ba3e99932d6427cfefea2a28825e6"/><file name="UtilsTest.php" hash="39002d5af09b85b2ec765e6e4698f94e"/><file name="bootstrap.php" hash="2485c354ba16ebdece68b7036a68d90a"/><file name="perf.php" hash="1f2e05c29dea96304aa4ff3f07480801"/></dir><file name=".editorconfig" hash="7e66193b631a146c4a293759de00bf55"/><file name=".gitignore" hash="98d0c9e025ddeaea0512712bf442e39f"/><file name=".travis.yml" hash="fc89cdb2bffb45541e0ab0eaa564b136"/></dir><dir name="ringphp"><file name="CHANGELOG.md" hash="799347e9b288e0be8ea32f1a1abf8267"/><file name="LICENSE" hash="f9ddfabead2127b089fa60b1cf462ad7"/><file name="Makefile" hash="a17b9a1407c7959a90868c31f61e71f4"/><file name="README.rst" hash="e7a3f00179cfb4b0feee9f88b85e9fe9"/><file name="composer.json" hash="68665e93d1453df2865ed80265fff1ba"/><dir name="docs"><file name="Makefile" hash="777df5c7fafb2d6bfcb3c802e84adc3a"/><file name="client_handlers.rst" hash="6ca3e9e513f571032762133d8a162471"/><file name="client_middleware.rst" hash="681214a7d675a62a5ef3b86acfe37a20"/><file name="conf.py" hash="9f2affce54bd7d8c9a9007b59fc763e0"/><file name="futures.rst" hash="34a204df5751b48199926211066729eb"/><file name="index.rst" hash="a3671abf15c984498720c8899bb08394"/><file name="requirements.txt" hash="baa676171a96a28c1393d91384b1b7ef"/><file name="spec.rst" hash="a01eb587edb3e5114007cad16d235e02"/><file name="testing.rst" hash="6413148aac13954f10afe9f49312710d"/></dir><file name="phpunit.xml.dist" hash="a08ade01ef087db50589d228bb9eb420"/><dir name="src"><dir name="Client"><file name="ClientUtils.php" hash="0287d3512ac65d1f8e278e219274c847"/><file name="CurlFactory.php" hash="f909fb13038da4267441077c7b794500"/><file name="CurlHandler.php" hash="85e6686ed0f84679fc7e4f851c268b63"/><file name="CurlMultiHandler.php" hash="fc5c927d9981a88d28ec6071c437bfbf"/><file name="Middleware.php" hash="10b4e00d41ae53ab744c3df441813175"/><file name="MockHandler.php" hash="d9b3b00bd2e611076fb26f6706c6210c"/><file name="StreamHandler.php" hash="f7d46f8fe620052a8d45b454c42cedc0"/></dir><file name="Core.php" hash="f658655aef2402084df1ae4f1fe426aa"/><dir name="Exception"><file name="CancelledException.php" hash="b520e10d3139675532606f2a0334cca7"/><file name="CancelledFutureAccessException.php" hash="fa44e44ab519317596c0790a65d7bf38"/><file name="ConnectException.php" hash="de603e26f57a49cd5e4eab10e1686f15"/><file name="RingException.php" hash="965eeeb09364f0e0da13d094eefb4be3"/></dir><dir name="Future"><file name="BaseFutureTrait.php" hash="718e41c2d5cef401149c20ca371ad424"/><file name="CompletedFutureArray.php" hash="2ac2ca1892020c4608f2435fd0ebccd5"/><file name="CompletedFutureValue.php" hash="3c6ebdc379ed9af49fc185dd3d37c210"/><file name="FutureArray.php" hash="7f9b892d14899e73e491389c48301d4a"/><file name="FutureArrayInterface.php" hash="4871442a53bd711d89ac9823ee0d8df9"/><file name="FutureInterface.php" hash="eb26d9d532221a1425a8fac2aad96a9e"/><file name="FutureValue.php" hash="be5e06025b123a0d8a9acb8198c2f936"/><file name="MagicFutureTrait.php" hash="94f71a67eebbeaf6f85f778b73ae931d"/></dir></dir><dir name="tests"><dir name="Client"><file name="CurlFactoryTest.php" hash="acaa0fec3dcbc3128b80e020340ac669"/><file name="CurlHandlerTest.php" hash="21ec6983ba2f120240b61e9ab428198d"/><file name="CurlMultiHandlerTest.php" hash="06596c64487027c651f33b797e12a2f6"/><file name="MiddlewareTest.php" hash="100c93dbc7a3053493a42e3e42a244a5"/><file name="MockHandlerTest.php" hash="38eee76c7a84144938ad6704f87d805e"/><file name="Server.php" hash="fa6f211ad34231d3db7bd09a65e20669"/><file name="StreamHandlerTest.php" hash="29e30c9dbdd9728b000494d651e135cb"/><file name="server.js" hash="88d159b78be1b7fa9212209d4d38aef3"/></dir><file name="CoreTest.php" hash="5f7dca3a73b8831f4465fe8dab669118"/><dir name="Future"><file name="CompletedFutureArrayTest.php" hash="700f902ea1cce7e9001d01568ed581d8"/><file name="CompletedFutureValueTest.php" hash="f0f0fbd1dd1c4ac7c200cac5254f6cf8"/><file name="FutureArrayTest.php" hash="faa49dcfb801b774d54ee6c086011614"/><file name="FutureValueTest.php" hash="e7c40a1fd52bb1a58aaad00c8705b37f"/></dir><file name="bootstrap.php" hash="2b4a9ef0805593b41fc90c937437c53d"/></dir><file name=".gitignore" hash="2eb59fa71b9af27e9490e3f48045826d"/><file name=".travis.yml" hash="efa3829190500a4d0da1a423497a5cbe"/></dir><dir name="streams"><file name="CHANGELOG.rst" hash="4752dfe3eab49192fde530a2c2cdb4fe"/><file name="LICENSE" hash="f9ddfabead2127b089fa60b1cf462ad7"/><file name="Makefile" hash="648bf3b1ee188fe82ff842fbf8703ce6"/><file name="README.rst" hash="3e6fd1afbf41950f151ec71a248852ea"/><file name="composer.json" hash="b1a7224ca7d3dc8822599053a986ecb7"/><file name="phpunit.xml.dist" hash="2c20ff733adcdbfc654d37cd863c62a1"/><dir name="src"><file name="AppendStream.php" hash="6058885102fd00fb17b3ba541631bd07"/><file name="AsyncReadStream.php" hash="357a76d042d9f3e7aec1062f6e3a80d2"/><file name="BufferStream.php" hash="87ddb692697c7708e20e1145e7a63911"/><file name="CachingStream.php" hash="6fe89b215a313c235b9239e52378180b"/><file name="DroppingStream.php" hash="44a9450100c8a5f85f3b95563417ccf5"/><dir name="Exception"><file name="CannotAttachException.php" hash="ab4352ccfc2468697a1a86945bbdd1c8"/><file name="SeekException.php" hash="68575bcb6ba2622232ffe7e65450b165"/></dir><file name="FnStream.php" hash="d4bf7cd1da1124cf8c5a561cecdc5059"/><file name="GuzzleStreamWrapper.php" hash="048a82bcb138568e0bbbceaf5f886716"/><file name="InflateStream.php" hash="788a139a27c18d6bd886159e8ef8c10e"/><file name="LazyOpenStream.php" hash="2424456087e77c0cdf3ba02de4f15e9c"/><file name="LimitStream.php" hash="e2a9332833d878494ed30fb3d9f2b8a3"/><file name="MetadataStreamInterface.php" hash="802f0231c068d9f085f3c8653bb926d1"/><file name="NoSeekStream.php" hash="a35f7ea68c23cab4d246f7a2a0edcbe9"/><file name="NullStream.php" hash="a0b4395fc529242d414dd578c4c6f980"/><file name="PumpStream.php" hash="bb422e1161cc1ccf89951fea853f135a"/><file name="Stream.php" hash="f6efbdb369652e6351c8e837febe1795"/><file name="StreamDecoratorTrait.php" hash="775c6b0b12cec849cd1be3bab364006a"/><file name="StreamInterface.php" hash="4ed5919e395f7e4c568e600c800f378d"/><file name="Utils.php" hash="5ee03fd3c0c37082efab7dc213c9f455"/></dir><dir name="tests"><file name="AppendStreamTest.php" hash="7c1d5b1fd981a895240c532a3388cadd"/><file name="AsyncReadStreamTest.php" hash="3cf24da24619f99afd5361953a87a0c9"/><file name="BufferStreamTest.php" hash="e1dff59b71a28ca18f2bf64d88160f8e"/><file name="CachingStreamTest.php" hash="8857ec65fa6e1733a835d1bdecadf0df"/><file name="DroppingStreamTest.php" hash="cb27027850b6b6b87764e716f18568fc"/><dir name="Exception"><file name="SeekExceptionTest.php" hash="2396902960ff0282591d51fd5d40c2df"/></dir><file name="FnStreamTest.php" hash="10285ef01d4cdde83ee80b6132f05a30"/><file name="GuzzleStreamWrapperTest.php" hash="c3f6afb7e215827d5c02cc7ccb4a1848"/><file name="InflateStreamTest.php" hash="b34cbead206f2c39af9735299732b0c5"/><file name="LazyOpenStreamTest.php" hash="794d1631cdf4970a0e69d6ec18290b8a"/><file name="LimitStreamTest.php" hash="66aa7cda081a9d98b8520f942d8f959c"/><file name="NoSeekStreamTest.php" hash="23e203dceb9d70b248d9c3ff5a7aa19b"/><file name="NullStreamTest.php" hash="667a01a596537fe1743ccc237e29cb61"/><file name="PumpStreamTest.php" hash="4cfac47d1911e456bb024913883d675e"/><file name="StreamDecoratorTraitTest.php" hash="0a5247c33b45fd37eb6d4582fd33560e"/><file name="StreamTest.php" hash="a9651186306c293533de2c7d9575f23b"/><file name="UtilsTest.php" hash="f137bb850134805b09794ce79423d9ad"/></dir><file name=".gitignore" hash="af19642b4a44a0330a47893c52d33a78"/><file name=".travis.yml" hash="2559fbe72dc387ede606879bedf4a420"/></dir></dir><dir name="klarna"><dir name="checkout"><file name="CHANGELOG" hash="91420952d95dfdad96e4266509692d83"/><file name="README.md" hash="63e2414e02fca1699b4838c075d5498e"/><file name="composer.json" hash="7d20a8a2ab1a3fe9e00d6b090ba0f615"/><file name="composer.lock" hash="6cadb52f82047450228f075328b98d64"/><file name="phpunit.xml.dist" hash="2747e7fcf10168a681436dd6f766fac2"/><dir name="src"><dir name="Klarna"><dir name="Checkout"><file name="ApiErrorException.php" hash="2ee753ea8d9bb25c3042c39574740234"/><file name="BasicConnector.php" hash="c73f620bd0e425c1078b326e43e3e696"/><file name="ConnectionErrorException.php" hash="47ad168d89258dd0f50d346db2039e3e"/><file name="Connector.php" hash="af278e09f9ead41efaffb309db9d1d1c"/><file name="ConnectorException.php" hash="22fcdb95e62b2ac1d11c76367dc3fa21"/><file name="ConnectorInterface.php" hash="f8fc74692b80983902a4ccdf3e7386f0"/><file name="Digest.php" hash="2df60ce55deb399f27a9b8d26dd4c5eb"/><file name="Exception.php" hash="94bc7cfdb48499b11b275138d9130daf"/><dir name="HTTP"><file name="CURLFactory.php" hash="28b3477792209a92ffbcc6e45ba2c7a6"/><file name="CURLHandle.php" hash="7483b87c4f373224615d912093a47821"/><file name="CURLHandleInterface.php" hash="f9482c3e6dce14dddc147490a81b854a"/><file name="CURLHeaders.php" hash="7da7e965a475ad8af6cf2b4ca9f63720"/><file name="CURLTransport.php" hash="c10c719fb4dbad75f0a60156b3cea105"/><file name="Request.php" hash="adade3aec9d24b96e6a7e780fb66cbd0"/><file name="Response.php" hash="85b94dd9e111af17d6af712a2d84c871"/><file name="Transport.php" hash="bea26f81efd9ccba64747bd977d25674"/><file name="TransportInterface.php" hash="083d333e9086209df8c8ffdafa4ab5f5"/></dir><file name="Order.php" hash="1cb248c7fc97a9a6b66f3540f215a514"/><file name="RecurringOrder.php" hash="15aef53ffbfcac56db7b4db1f752dc96"/><file name="RecurringStatus.php" hash="9088af9342a91242f81431428148c537"/><file name="Resource.php" hash="095eba98dbebe0a564df348bbc92ee8e"/><file name="ResourceCreateableInterface.php" hash="d8418dc77baf443082cb37b1f3c7ceaf"/><file name="ResourceFetchableInterface.php" hash="738054af83559cc13486a0d4d1b2892d"/><file name="ResourceInterface.php" hash="fdc0847b0976a4a55eb08e426ab97bc0"/><file name="ResourceUpdateableInterface.php" hash="8db5c24203a7ef93c2b65917afaa095a"/><file name="UserAgent.php" hash="9e49abfa7f3490a10c090fe73b6399b7"/></dir><file name="Checkout.php" hash="e9afded2fb815d67d7b5e84e9886eb9c"/></dir></dir><dir name="tests"><file name="CURLHandleStub.php" hash="659072a9abd2cd2f05f7f3ac1f479cfd"/><file name="ConnectorStub.php" hash="48ba5cf0b33831691bbf23e7f0c79a72"/><file name="CurlFactoryStub.php" hash="5cfecfc5407d1e265aed66aed8e8bbb8"/><file name="ResourceStub.php" hash="fedd5a3f13f59a23e05ed010b6fb40e3"/><file name="TransportStub.php" hash="5b7efacd3a5c6ae16285191a080e6095"/><file name="benchmark.php" hash="5448cba2cd19f3396339f937bc4c6f1c"/><file name="bootstrap.php" hash="b23ef14cfbd850597829b5690f2f0cb3"/><dir name="component"><file name="ComponentTest.php" hash="bd8e7b15cd46337f2786262d7d2571c4"/></dir><dir name="unit"><file name="BasicConnectorGetTest.php" hash="9f739591fa053970270c1e842d53e2ad"/><file name="BasicConnectorPostTest.php" hash="481c890453a487d30f45e4b6d6ed3e51"/><file name="BasicConnectorTest.php" hash="25aa4a248042d53d0bdf6dabd0867958"/><file name="ConnectorTest.php" hash="bc876a52b2f37fbc008c7b4285df8589"/><file name="DigestTest.php" hash="05477133bd7088ace133622efe397cb4"/><dir name="HTTP"><file name="CURLFactoryTest.php" hash="17b5e7ad8568c4d7256de6cd124a5a5c"/><file name="CURLHeadersTest.php" hash="98dc84fd0c3757bebf2773fea1ac50c1"/><file name="CURLTransportTest.php" hash="7d96b3a0eb15eae7ec50cf468f72c3f0"/><file name="RequestTest.php" hash="140bcf26ed2d2aa1470f9ad3ef79cf52"/><file name="ResponseTest.php" hash="a6af37498770440a57fee62fb3c6c916"/><file name="TransportTest.php" hash="86bd0abfab8063870b58f8abeefd8ac8"/></dir><file name="OrderTest.php" hash="6a4bde9dd694b878dfc693b43bb17df0"/><file name="OrderWithConnectorTest.php" hash="7e261c1d6ab78bf4a724e258284bd0b5"/><file name="RecurringOrderStatusTest.php" hash="13f65129470cf1e38f899f09aed57966"/><file name="RecurringOrderStatusWithConnectorTest.php" hash="21fc3a47034750cea08b4e09279b07a2"/><file name="RecurringOrderTest.php" hash="40238732ee6e904d01ad9a0d9cf85542"/><file name="RecurringOrderWithConnectorTest.php" hash="3887d126808187a99350de23a3a45d09"/><file name="ResourceTest.php" hash="26926cdabaac323a5a84f2a821aeaae5"/><file name="UserAgentTest.php" hash="d054c8f07213920074d2d0dd8111a3ce"/></dir></dir><file name=".coveralls.yml" hash="41f20d3e573f24542b73134a7512f886"/><file name=".travis.yml" hash="54097bfc0dfd7a07d6624099673bb0c0"/></dir><dir name="kco_rest"><file name="CHANGELOG.md" hash="208f165374e24dcb0d25b77a544d36cb"/><file name="README.md" hash="b846f2a8a7ed57d0b58df9156ae0f502"/><file name="composer.json" hash="faa4d6f172d4f9991cf2583e57f9b43c"/><file name="composer.lock" hash="f6e5372d1fbf47f4b22b12ea714b9e3e"/><file name="phpmd.xml" hash="a5580a49b530f5344336672d6746ecec"/><file name="phpunit.xml.dist" hash="31ce95f48574c9f1781c57a89639c864"/><dir name="src"><dir name="Klarna"><dir name="Rest"><dir name="Checkout"><file name="Order.php" hash="8fa6a4eea2806ea78b196c28ca17884c"/></dir><dir name="OrderManagement"><file name="Capture.php" hash="b0ba2956d952efc1b493097b1b7f405c"/><file name="Order.php" hash="1d84703716c990748207af0cd88f0858"/></dir><file name="Resource.php" hash="f4cf3b6e873eb5247e8f5e17fbb730b5"/><dir name="Transport"><file name="Connector.php" hash="17c740eb2c40710fafb8385972748e68"/><file name="ConnectorInterface.php" hash="30070bea834a4573b7c841ebc83c21e9"/><dir name="Exception"><file name="ConnectorException.php" hash="29517f30e4dfd619893668705eaabed4"/></dir><file name="ResponseValidator.php" hash="5f980714fd49b2707cd18d835d4f946b"/><file name="UserAgent.php" hash="e9316fe3c9af32707939246e8d7e2d60"/><file name="UserAgentInterface.php" hash="71797f063041a353614f4a8e1c925acd"/></dir></dir></dir></dir><dir name="tests"><dir name="Component"><dir name="Checkout"><file name="OrderTest.php" hash="e791b99cf7ad21b701fb935c08570572"/></dir><dir name="OrderManagement"><file name="CaptureTest.php" hash="413b60a776bd2ac7a8fc293ad8eb5b68"/><file name="OrderTest.php" hash="a37006750840c38258d2c6d3f7dc70a5"/></dir><file name="ResourceTestCase.php" hash="babb3508460423b050c0c70094414640"/><file name="TestCase.php" hash="c34fa0b6059f12ca564e92651f08c499"/><dir name="Transport"><file name="ConnectorTest.php" hash="c2351c87144d9732fe512d91fd9cb53b"/></dir></dir><dir name="Unit"><dir name="Checkout"><file name="OrderTest.php" hash="c978a6fe5c552c472828fa13a2cdd40e"/></dir><dir name="OrderManagement"><file name="CaptureTest.php" hash="e503667762fe38fb4ce6b140da2aaa2f"/><file name="OrderTest.php" hash="cbbd9a2e9f4bf9f44cae72c379d4de8e"/></dir><file name="TestCase.php" hash="346385f78cff8af660550108a59ce125"/><dir name="Transport"><file name="ConnectorTest.php" hash="2df7452462b49ef1ad9727fa28f32e6a"/><dir name="Exception"><file name="ConnectorExceptionTest.php" hash="78a1ee706884f9834abe3517db21f5bd"/></dir><file name="ResponseValidatorTest.php" hash="ee4f1f92409134212ee4d1f8b7200947"/><file name="UserAgentTest.php" hash="2b293e44947a1f50ae4cfcc21d918208"/></dir></dir><file name="bootstrap.php" hash="4369bbf6d3e8ba5e4ec6bb3fd22111dc"/></dir><file name=".coveralls.yml" hash="cfb1992ca899f9e80c4b2dc20b6cb663"/><file name=".gitignore" hash="ba65a73716f4b4c41eb4c4c9dddc5773"/><file name=".travis.yml" hash="94e4f3722044ac6238a4782e9125c48f"/></dir><dir name="php-xmlrpc"><file name="CHANGELOG.md" hash="34616338644430ede35362877f24ec53"/><file name="README.md" hash="97d58e131115d3624577be4f6a8f8a41"/><file name="composer.json" hash="2916bde4b7207d582ffb71d1106d8be1"/><file name="composer.lock" hash="8aed35a631c3e91c07f828b4b5315775"/><dir name="src"><file name="CheckoutServiceRequest.php" hash="1bbfa94bb451ae6ab67e4a9a28d3b7cb"/><file name="CheckoutServiceResponse.php" hash="fbf775ee53bd939ec632ec538e9d5d29"/><file name="CurlHandle.php" hash="a3a6cb91454d298adac258e4dda6c9da"/><file name="CurlTransport.php" hash="75b41c945880005cc7b898057db7c869"/><file name="JSONStorage.php" hash="8451d9235285a3553da0e49827750010"/><dir name="Klarna"><file name="ArgumentNotSetException.php" hash="b0645325119b49d9c16614c53b9d57fb"/><file name="ConfigFieldMissingException.php" hash="1f72a53931d4c441feb6d8f9c95975c5"/><file name="DatabaseException.php" hash="3c5d7ef66320880d93a7a8c2185fca3d"/><file name="FileNotReadableException.php" hash="e82356ea1776383db3a2f4c4942e03cd"/><file name="FileNotWritableException.php" hash="390ccedba78ed15ffc3daa3d0bd688a2"/><file name="IncompleteConfigurationException.php" hash="174af536d82a6a9e9d5a64e2edd24820"/><file name="InvalidKlarnaAddrException.php" hash="93443fe6b4c7e3f17da50059e1494cb6"/><file name="InvalidLocaleException.php" hash="dc816df5008c64dde6917de1e17ebbe0"/><file name="InvalidPNOException.php" hash="e363f0271a2f9caa34ef08a55b452d6b"/><file name="InvalidPriceException.php" hash="9e27ccb455f13b52583dfeffe92083a6"/><file name="InvalidTypeException.php" hash="1849ea257c5450dc26f3e8f27267f79e"/><file name="MissingAddressException.php" hash="b42611d2e362135bc798cfaaf867bda0"/><file name="MissingCountryException.php" hash="ed5ff50afa029380dbc0fd39a39d9f4f"/><file name="MissingGoodslistException.php" hash="5008821a09414fc32ab537c849651f11"/><file name="PCStorageInvalidException.php" hash="3dab26096fc4d0492db3951bcc02cd32"/><file name="PClassException.php" hash="d0a8ab5a5b4a123adec626433330af99"/><file name="ShippingCountryException.php" hash="2fb350a928cdd4e6d616ce0c05fba23b"/><file name="UnknownAddressTypeException.php" hash="6e65d7bd43023fb6dcbd7a5eb87159c6"/><file name="UnknownCountryException.php" hash="3e3501de53a36505b6a885ac9258e272"/><file name="UnknownCurrencyException.php" hash="9a1e70da1914af2fbaec2b1d19c5118d"/><file name="UnknownEncodingException.php" hash="44ba99bc0c0f1ad477af54b17ff94806"/><file name="UnknownLanguageException.php" hash="53ec3bb77d44c11625330e1e5a4cefe2"/><file name="UnsupportedMarketException.php" hash="546f99e85e29904c1b16d62e90827947"/><file name="XMLParseException.php" hash="6aa045458ee89a44bf0073671c789ff2"/></dir><file name="Klarna.php" hash="da7f3bbf523f6dbe172a01ad4a7f3dc9"/><file name="KlarnaAddr.php" hash="d13408406b0fdc81dae3ee86e3532101"/><file name="KlarnaCalc.php" hash="b38bedd15876cfed264f9e983775ea9e"/><file name="KlarnaConfig.php" hash="c09171cffc11b506356c74d2c4b8d32a"/><file name="KlarnaCountry.php" hash="1a9869e603b9779decdc0ebe4a8c0682"/><file name="KlarnaCurrency.php" hash="da45e2242df05fe32d7fb3af870e11ca"/><file name="KlarnaEncoding.php" hash="6605d844da6cd648ac4e31517f307aaa"/><file name="KlarnaException.php" hash="d52cd44994f4bae53a1d7d8e00ecde2e"/><file name="KlarnaFlags.php" hash="7ef5cb0f8dc455cbad3eb79205c765f0"/><file name="KlarnaLanguage.php" hash="97cfc5ddee8c4edfa17538e7be7c832c"/><file name="KlarnaPClass.php" hash="edd80b089d5620bf325ce13e9c3f95ff"/><file name="MySQLStorage.php" hash="83ac31cb327b21b7cd3d93a63c701f5d"/><file name="PCStorage.php" hash="ce074b4209a152081e59768c21f2c430"/><file name="SQLStorage.php" hash="492a48d28af1db33387df38421157d73"/><file name="XMLStorage.php" hash="2c65c17a392669425569caada3c26041"/></dir><file name=".gitignore" hash="ef3d875be6c505522ebe1de42eb17041"/></dir></dir><dir name="phpxmlrpc"><dir name="phpxmlrpc"><file name="ChangeLog" hash="e8bed9f7ea49e8978ebaf3aefc3d6763"/><file name="INSTALL" hash="ba7e56d1c509ab359687d0eb410fd67f"/><file name="Makefile" hash="17ddf0d627285fb63facbac78a294e05"/><file name="NEWS" hash="7df954494213928899d7126e11697a45"/><file name="README" hash="c798e95ace121811ba088ab0243cf6f9"/><file name="composer.json" hash="cdbeec76c1564ea14cdb8f371311e45e"/><dir name="debugger"><file name="action.php" hash="42931f8af45654e5384cdcba581bbdd7"/><file name="common.php" hash="04dacdaede5fcec8ac0d37ab2207785a"/><file name="controller.php" hash="6ab12d0ded89b1610ae9542f00c5486f"/><file name="index.html" hash="8089385cfcdda1da8945e79b4cf80a8c"/><file name="index.php" hash="5a9325b5f898b459a8622795d37d9b43"/></dir><dir name="demo"><dir name="client"><file name="agesort.php" hash="4f0a8049081d6c253ffad45fc4ba917b"/><file name="client.php" hash="d7743d44411d62156daecc7b9287f9f1"/><file name="comment.php" hash="920db7c7c4e69c37d2e45b82933753a9"/><file name="introspect.php" hash="4dc4ebd25401311f0a5b4fa756eda363"/><file name="mail.php" hash="e2b2c8d14ff519ed23ec4493557512d2"/><file name="simple_call.php" hash="73b80792403a28b62d13f6900993c802"/><file name="which.php" hash="188cb73060de7c5674e84679e93ac569"/><file name="wrap.php" hash="c288c912dacf4325139807fe5596a50f"/><file name="zopetest.php" hash="9e9b5b5330448b8a58c58f3ece80e364"/></dir><file name="demo1.txt" hash="4d0040f1860d7e9fad0033601f37135f"/><file name="demo2.txt" hash="7094c2d2e8fe90fc4def6494c5e91dc3"/><file name="demo3.txt" hash="d2211f8d0c879618b802dbd8a0c96e4a"/><dir name="server"><file name="discuss.php" hash="b7c47dc9ac74ac57470f61ce94f9cd3d"/><file name="proxy.php" hash="d326fc21672da25a3b69a817f7c671c0"/><file name="server.php" hash="c89f65ede873dad49aaae3f6582e3218"/></dir><file name="vardemo.php" hash="dc8047a5813a4d00d15ca4bb566a0604"/></dir><dir name="doc"><file name="Makefile" hash="4226768d79be4cfc48104e9c9bdbbbaf"/><file name="announce1_0.txt" hash="26b371c4a22e6245f38569c7cd0fc9a1"/><file name="announce1_1.txt" hash="620fccd7cf3b319714d4ea33732c2f8e"/><file name="announce1b6.txt" hash="a2e26e7e2bea956525ce7f6ab1c5290e"/><file name="announce1b7.txt" hash="528d6b1db2ed3798a8073e4591ad332f"/><file name="announce1b8.txt" hash="4d95aebc6aa2ae12f921ff8d958f51ba"/><file name="announce1b9.txt" hash="31fd2b26eb547a38d33cfe964b1db570"/><file name="convert.php" hash="73e05138bb866f195da6d905c6a5bd2e"/><file name="custom.dsl" hash="cd2f1a75be042c0d090517a3dd21b694"/><file name="custom.fo.xsl" hash="51f80166f3a79ef78295d8e83e05c427"/><file name="custom.xsl" hash="82fc369c5c3d28ca2be21154437c71ff"/><file name="debugger.gif" hash="c20096b9fd98220287749fab62b33c9c"/><dir name="docbook-css"><file name="COPYING" hash="f7b4f97c7c0ee4f63b842363827ecafc"/><file name="CREDITS" hash="466edd5f3c17494d74609595d7453f26"/><file name="core.css" hash="c7b5938d6370c1b4288a55752cc4052c"/><file name="db-bindings.xml" hash="6537473b139ef8f62a22c758f772c85a"/><file name="driver.css" hash="e70c11500db9aead650ef332f1f0c4e9"/><dir name="l10n"><file name="de.css" hash="9e4b2f10e43a9b5f21219b5c2434f715"/><file name="en.css" hash="289dfc4c6e1b9889a89b017a89019ce1"/><file name="es.css" hash="c17bdd6a3ef23cf7b7c4feed43ee4bd6"/><file name="pl.css" hash="d1941f402ce4ad8a77a4c2d1b06b6a0d"/></dir><file name="l10n.css" hash="43ea9155e0030af51e9c4a8197bc8ab9"/><file name="mozilla.css" hash="1c743ddeb5af382cd99bbcf638f27fea"/><file name="opera.css" hash="6df8bbd426f9b39c5eacfa26c090a5dd"/><file name="styles.css" hash="2a0ecb1c2fc46dd67d0e23004324b8cd"/><file name="tables.css" hash="4d2ae9cf71e87b97c059682bb834ea1b"/><file name="xmlrpc.css" hash="5dc5aab6f796992f747d1eb05749dc95"/></dir><file name="highlight.php" hash="0932a4e30740b30d6b022afd24a2e637"/><file name="progxmlrpc.s.gif" hash="47174c9dbdea37549f2d2f40a19f611d"/><file name="xmlrpc_php.xml" hash="a759ec222dc6a8a9834cd52284f1ba5f"/><file name=".gitignore" hash="5cbe34a7623b5b0e2363b07202407aa3"/></dir><dir name="extras"><file name="rsakey.pem" hash="3da1212fd92b9e2ec696a3105e0a6c1f"/><file name="test.pl" hash="c4440b60b8deee55e0766f048bbd8251"/><file name="test.py" hash="0448fb28b323a9fbd67061e29c7b8e3e"/><file name="workspace.testPhpServer.fttb" hash="e304642683b2adecad685ff9d9eabfbe"/></dir><dir name="lib"><file name="xmlrpc.inc" hash="92c03c2eb0ed11e9a75d9af23963f83a"/><file name="xmlrpc_wrappers.inc" hash="555d43b7e509d7d11aaf1adf2dd953df"/><file name="xmlrpcs.inc" hash="a6aecddab0c4cdfda553d61c920d2218"/></dir><dir name="test"><dir name="PHPUnit"><file name="Assert.php" hash="e96bdaa7e3383cbabe6804e295be0cdc"/><file name="TestCase.php" hash="b6f1e8c20f5b79ee2dcde059a1ea2fa3"/><file name="TestDecorator.php" hash="d23ff0aa7155381a746e5c20c54f6bb5"/><file name="TestFailure.php" hash="ab691542c9ebd1e3674be1693004a948"/><file name="TestListener.php" hash="6f10a3f83af0a1f0709abd60d9661e11"/><file name="TestResult.php" hash="b060fcea2f0d90b5d6507100b8235ff7"/><file name="TestSuite.php" hash="9a152d371493d4a3b7ab2c58c7a137b6"/><file name="license.txt" hash="a45bb1bbeed9e26b26c5763df1d3913d"/></dir><file name="benchmark.php" hash="099cd289c1ea64b2cec4255e77b9ad14"/><file name="parse_args.php" hash="3973ac6727862385c4d203951ba023d2"/><file name="phpunit.php" hash="727ced027153a9a21e21b1e8cc44f636"/><file name="testsuite.php" hash="7ab095eff09b518537ac4942a0779eab"/><file name="verify_compat.php" hash="e2916c1fe04347385419e809ee38c730"/></dir><file name=".gitignore" hash="f734cd40b8ec373c5ca7cde337c13b5e"/><file name=".travis.yml" hash="41b6718ec872e865112bed81805496e5"/></dir></dir><dir name="react"><dir name="promise"><file name="CHANGELOG.md" hash="2b1f02283ecd949264f900170ea8b3fc"/><file name="LICENSE" hash="e46a0a186cdc556ce7574113f2653180"/><file name="README.md" hash="bbcb0875dc0201cdfe6573443d2bea14"/><file name="composer.json" hash="0ca73967404075ef80fc494b370ddefc"/><file name="phpunit.xml.dist" hash="7d9482f8cd074b464c0f57496e727d5e"/><dir name="src"><file name="CancellablePromiseInterface.php" hash="1d8feeea39ac3cd66f2c041f0f6589f0"/><file name="Deferred.php" hash="a922b6f8f9d7f8525ddc2c5704eb1377"/><file name="ExtendedPromiseInterface.php" hash="1a287908208d527bbbe6e3128af84d26"/><file name="FulfilledPromise.php" hash="773d525b931f7ceb4e1cfa1fec923462"/><file name="LazyPromise.php" hash="a34e5f6bbc510757cb2d41ca41b846e5"/><file name="Promise.php" hash="f7ff3401d5f36e6e4bd613c859fd8d76"/><file name="PromiseInterface.php" hash="488da4a38d218ba8fb3eaea05dd1c264"/><file name="PromisorInterface.php" hash="d7bf061df9395a7cf5fd082805e42c7a"/><file name="RejectedPromise.php" hash="55b2be16604c09ed1add52d1c49dc56c"/><file name="UnhandledRejectionException.php" hash="b814c8ef9bd08d1d41782104aa6ef8f9"/><file name="functions.php" hash="ce714c7d1e64104fa43c043555078a8f"/><file name="functions_include.php" hash="4da7302e4ed0862c6fa885a3c66bcd01"/></dir><dir name="tests"><file name="DeferredTest.php" hash="5fb76a8bd96a79598d69afb9bcc8c1e1"/><file name="FulfilledPromiseTest.php" hash="20e21c11b19ec8b46a47fc072e7a9e0c"/><file name="FunctionAllTest.php" hash="c2ee53ecc37d95fc55c57912477c215a"/><file name="FunctionAnyTest.php" hash="23565b2dfd5969a213862a7f061b2e03"/><file name="FunctionCheckTypehintTest.php" hash="b48395c507606f68d32150ddfc28ae0d"/><file name="FunctionMapTest.php" hash="287d180adefce847aa222bdb05025eb9"/><file name="FunctionRaceTest.php" hash="3d9edf2ca2f2253496c8cf0ecba7c5d6"/><file name="FunctionReduceTest.php" hash="1b9bc983e9900e29f187475072d10cd9"/><file name="FunctionRejectTest.php" hash="4209c5e6b051b3c065b4a8e1e32949dd"/><file name="FunctionResolveTest.php" hash="4836614d978e9b75b8857ed92e837468"/><file name="FunctionSomeTest.php" hash="78c1ad99506be879d910617d744274c0"/><file name="LazyPromiseTest.php" hash="f3f8f1e47ebf5097d726086c785a7b20"/><dir name="PromiseAdapter"><file name="CallbackPromiseAdapter.php" hash="3429d665b2a9dd4a9d3606af69db5c17"/><file name="PromiseAdapterInterface.php" hash="a02b0b5e52a71149688f7bef8894fcda"/></dir><dir name="PromiseTest"><file name="CancelTestTrait.php" hash="eab33b77dca722a733911b1e94ffb16c"/><file name="FullTestTrait.php" hash="e82099e47b8fe984b7f5ff832c811b9b"/><file name="NotifyTestTrait.php" hash="314ba252939f84fd2885064409d4247d"/><file name="PromiseFulfilledTestTrait.php" hash="d83a22d7b2792a2e067447533ef80598"/><file name="PromisePendingTestTrait.php" hash="ca94a285a8ac4b0f402f9915025997a9"/><file name="PromiseRejectedTestTrait.php" hash="286f6bd7327a649c553096b4cb899642"/><file name="PromiseSettledTestTrait.php" hash="2b4de2fa354193aa5d577d2996713eb0"/><file name="RejectTestTrait.php" hash="11d13fb0d33113764df7ad81981e3ff5"/><file name="ResolveTestTrait.php" hash="e8786f5b09a518feb6cb991ec28093df"/></dir><file name="PromiseTest.php" hash="7bbbd1f2acb6e6187b42751a093fb057"/><file name="RejectedPromiseTest.php" hash="e72e7e3d7bc3e7779ea1b8383604a263"/><dir name="Stub"><file name="CallableStub.php" hash="aa2c5ca5528276a340c013c950c3c792"/></dir><file name="TestCase.php" hash="4c1e0a05effe1354008b82a9c903b5b9"/><file name="bootstrap.php" hash="ac271c71e8caa31202d61356508b7c32"/></dir><file name=".gitignore" hash="dbc957e3a33427be6ecce1f274683ed4"/><file name=".travis.yml" hash="ae054f04b30abca8bfdb9f0726d02c2d"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="KCO"><file name="dropdown.png" hash="a408e177ff3130bdb4bb491935700df4"/><file name="kco.css" hash="29ab03ae78f7a5023ab8344c41331a52"/><file name="klarna_simplifying.png" hash="280abffdadbbd0d372a8505c4c83a9e8"/><file name="loader.gif" hash="5e51d58f5d9bd09ab814d9ca9347d3b9"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Avenla_KlarnaCheckout.xml" hash="22b47fd5cc2c12370457a51ffff752d6"/></dir></target><target name="magelocale"><dir name="fi_FI"><file name="Avenla_KlarnaCheckout.csv" hash="8a4fcffae0d3fd50eb110b84426a16f1"/></dir><dir name="sv_SE"><file name="Avenla_KlarnaCheckout.csv" hash="98ad3693c053d6f6dbffdc736b9b3185"/></dir></target></contents>
20
  <compatible/>
21
+ <dependencies><required><php><min>5.2.16</min><max>7.0.0</max></php></required></dependencies>
22
  </package>