Expressly - Version 2.5.0

Version Notes

https://github.com/expressly/magento/releases

Download this release

Release Info

Developer Expressly
Extension Expressly
Version 2.5.0
Comparing to
See all releases


Code changes from version 2.4.3 to 2.5.0

app/code/community/Expressly/Expressly/composer.json CHANGED
@@ -10,7 +10,7 @@
10
  }
11
  ],
12
  "require": {
13
- "expressly/php-common": "2.4.2"
14
  },
15
  "repositories": [
16
  {
10
  }
11
  ],
12
  "require": {
13
+ "expressly/php-common": "2.5.0"
14
  },
15
  "repositories": [
16
  {
app/code/community/Expressly/Expressly/composer.lock CHANGED
@@ -4,8 +4,8 @@
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
  "This file is @generated automatically"
6
  ],
7
- "hash": "d975199bb9ec13695adf5a564d83c249",
8
- "content-hash": "2c04f8b22ce22c24b1235b4b5470568e",
9
  "packages": [
10
  {
11
  "name": "doctrine/collections",
@@ -75,16 +75,16 @@
75
  },
76
  {
77
  "name": "expressly/php-common",
78
- "version": "2.4.2",
79
  "source": {
80
  "type": "git",
81
  "url": "https://github.com/expressly/php-common.git",
82
- "reference": "d402ce4c9b92fa18d92e6a093797214142b590e0"
83
  },
84
  "dist": {
85
  "type": "zip",
86
- "url": "https://api.github.com/repos/expressly/php-common/zipball/d402ce4c9b92fa18d92e6a093797214142b590e0",
87
- "reference": "d402ce4c9b92fa18d92e6a093797214142b590e0",
88
  "shasum": ""
89
  },
90
  "require": {
@@ -122,10 +122,10 @@
122
  ],
123
  "description": "Expressly common PHP library",
124
  "support": {
125
- "source": "https://github.com/expressly/php-common/tree/2.4.2",
126
  "issues": "https://github.com/expressly/php-common/issues"
127
  },
128
- "time": "2016-11-09 15:40:44"
129
  },
130
  {
131
  "name": "kriswallsmith/buzz",
@@ -564,7 +564,7 @@
564
  },
565
  {
566
  "name": "symfony/filesystem",
567
- "version": "v2.8.13",
568
  "source": {
569
  "type": "git",
570
  "url": "https://github.com/symfony/filesystem.git",
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
  "This file is @generated automatically"
6
  ],
7
+ "hash": "f18fdb358a656dc735b3ca6792009461",
8
+ "content-hash": "cce78d797afa95bf7dd731b40b3e4c54",
9
  "packages": [
10
  {
11
  "name": "doctrine/collections",
75
  },
76
  {
77
  "name": "expressly/php-common",
78
+ "version": "2.5.0",
79
  "source": {
80
  "type": "git",
81
  "url": "https://github.com/expressly/php-common.git",
82
+ "reference": "e06a5222e01139fb7b4cc165b025a47d7db066cd"
83
  },
84
  "dist": {
85
  "type": "zip",
86
+ "url": "https://api.github.com/repos/expressly/php-common/zipball/e06a5222e01139fb7b4cc165b025a47d7db066cd",
87
+ "reference": "e06a5222e01139fb7b4cc165b025a47d7db066cd",
88
  "shasum": ""
89
  },
90
  "require": {
122
  ],
123
  "description": "Expressly common PHP library",
124
  "support": {
125
+ "source": "https://github.com/expressly/php-common/tree/2.5.0",
126
  "issues": "https://github.com/expressly/php-common/issues"
127
  },
128
+ "time": "2016-11-30 16:01:48"
129
  },
130
  {
131
  "name": "kriswallsmith/buzz",
564
  },
565
  {
566
  "name": "symfony/filesystem",
567
+ "version": "v2.8.14",
568
  "source": {
569
  "type": "git",
570
  "url": "https://github.com/symfony/filesystem.git",
app/code/community/Expressly/Expressly/controllers/BatchController.php CHANGED
@@ -34,6 +34,9 @@ class Expressly_Expressly_BatchController extends AbstractController
34
  continue;
35
  }
36
 
 
 
 
37
  $mageOrders = $orderModel
38
  ->getCollection()
39
  ->addFieldToFilter('customer_email', $customer->email)
@@ -42,19 +45,23 @@ class Expressly_Expressly_BatchController extends AbstractController
42
  $invoice = new Invoice();
43
  $invoice->setEmail($customer->email);
44
  foreach ($mageOrders as $mageOrder) {
45
- $total = $mageOrder->getData('base_grand_total');
46
- $tax = $mageOrder->getData('base_tax_amount');
47
-
48
- $order = new Order();
49
- $order
50
- ->setId($mageOrder->getData('increment_id'))
51
- ->setDate(new \DateTime($mageOrder->getData('created_at')))
52
- ->setCurrency($mageOrder->getData('base_currency_code'))
53
- ->setTotal((double)$total - (double)$tax, (double)$tax)
54
- ->setItemCount((int)$mageOrder->getData('total_qty_ordered'))
55
- ->setCoupon($mageOrder->getData('coupon_code'));
56
-
57
- $invoice->addOrder($order);
 
 
 
 
58
  }
59
 
60
  $invoices[] = $invoice;
34
  continue;
35
  }
36
 
37
+ $from = \DateTime::createFromFormat('Y-m-d', $customer->from, new \DateTimeZone('UTC'));
38
+ $to = \DateTime::createFromFormat('Y-m-d', $customer->to, new \DateTimeZone('UTC'));
39
+
40
  $mageOrders = $orderModel
41
  ->getCollection()
42
  ->addFieldToFilter('customer_email', $customer->email)
45
  $invoice = new Invoice();
46
  $invoice->setEmail($customer->email);
47
  foreach ($mageOrders as $mageOrder) {
48
+ $orderDate = new \DateTime($mageOrder->getData('created_at'), new \DateTimeZone('UTC'));
49
+ $orderDate = \DateTime::createFromFormat('Y-m-d', $orderDate->format('Y-m-d'), new \DateTimeZone('UTC'));
50
+ if ($orderDate >= $from && $orderDate < $to) {
51
+ $total = $mageOrder->getData('base_grand_total');
52
+ $tax = $mageOrder->getData('base_tax_amount');
53
+
54
+ $order = new Order();
55
+ $order
56
+ ->setId($mageOrder->getData('increment_id'))
57
+ ->setDate(new \DateTime($mageOrder->getData('created_at')))
58
+ ->setCurrency($mageOrder->getData('base_currency_code'))
59
+ ->setTotal((double)$total - (double)$tax, (double)$tax)
60
+ ->setItemCount((int)$mageOrder->getData('total_qty_ordered'))
61
+ ->setCoupon($mageOrder->getData('coupon_code'));
62
+
63
+ $invoice->addOrder($order);
64
+ }
65
  }
66
 
67
  $invoices[] = $invoice;
app/code/community/Expressly/Expressly/controllers/CustomerController.php CHANGED
@@ -94,6 +94,8 @@ class Expressly_Expressly_CustomerController extends AbstractController
94
 
95
  $presenter = new CustomerMigratePresenter($merchant, $customer, $emailAddress, $reference);
96
  $this->getResponse()->setBody(json_encode($presenter->toArray()));
 
 
97
  }
98
  } catch (\Exception $e) {
99
  $this->logger->error(ExceptionFormatter::format($e));
@@ -223,13 +225,14 @@ class Expressly_Expressly_CustomerController extends AbstractController
223
  ->save();
224
  }
225
 
226
- $this->dispatcher->dispatch('customer.migrate.success', $event);
 
227
  } catch (\Exception $e) {
228
  $this->logger->error(ExceptionFormatter::format($e));
229
  }
230
 
231
  if (!$exists) {
232
- $this->getResponse()->setRedirect(Mage::getBaseUrl());
233
  } else {
234
  $this->mimicFrontPage();
235
 
@@ -238,7 +241,7 @@ class Expressly_Expressly_CustomerController extends AbstractController
238
  setTimeout(function() {
239
  var login = confirm("Your email address has already been registered on this store. Please login with your credentials. Pressing OK will redirect you to the login page.");
240
  if (login) {
241
- window.location.replace(window.location.origin + "/customer/account/login");
242
  }
243
  }, 500);
244
  })();
@@ -266,7 +269,7 @@ class Expressly_Expressly_CustomerController extends AbstractController
266
  } catch (\Exception $e) {
267
  $this->logger->error(ExceptionFormatter::format($e));
268
 
269
- $this->getResponse()->setRedirect(Mage::getBaseUrl());
270
  }
271
  }
272
 
94
 
95
  $presenter = new CustomerMigratePresenter($merchant, $customer, $emailAddress, $reference);
96
  $this->getResponse()->setBody(json_encode($presenter->toArray()));
97
+ } else {
98
+ $this->getResponse()->setHttpResponseCode(404);
99
  }
100
  } catch (\Exception $e) {
101
  $this->logger->error(ExceptionFormatter::format($e));
225
  ->save();
226
  }
227
 
228
+ $this->getResponse()->setRedirect('https://prod.expresslyapp.com/api/redirect/migration/' . $uuid . '/success');
229
+ return;
230
  } catch (\Exception $e) {
231
  $this->logger->error(ExceptionFormatter::format($e));
232
  }
233
 
234
  if (!$exists) {
235
+ $this->getResponse()->setRedirect('https://prod.expresslyapp.com/api/redirect/migration/' . $uuid . '/failed');
236
  } else {
237
  $this->mimicFrontPage();
238
 
241
  setTimeout(function() {
242
  var login = confirm("Your email address has already been registered on this store. Please login with your credentials. Pressing OK will redirect you to the login page.");
243
  if (login) {
244
+ window.location.replace("' . Mage::getUrl('customer/account/login') . '");
245
  }
246
  }, 500);
247
  })();
269
  } catch (\Exception $e) {
270
  $this->logger->error(ExceptionFormatter::format($e));
271
 
272
+ $this->getResponse()->setRedirect('https://prod.expresslyapp.com/api/redirect/migration/' . $uuid . '/failed');
273
  }
274
  }
275
 
app/code/community/Expressly/Expressly/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Expressly_Expressly>
5
- <version>2.4.3</version>
6
  </Expressly_Expressly>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <Expressly_Expressly>
5
+ <version>2.5.0</version>
6
  </Expressly_Expressly>
7
  </modules>
8
  <frontend>
app/code/community/Expressly/Expressly/vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit3bb70cd9ff78ae6aabc9ce72482e63c5::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitabeb439a6268374e0760449d85080be2::getLoader();
app/code/community/Expressly/Expressly/vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit3bb70cd9ff78ae6aabc9ce72482e63c5
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit3bb70cd9ff78ae6aabc9ce72482e63c5
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit3bb70cd9ff78ae6aabc9ce72482e63c5', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit3bb70cd9ff78ae6aabc9ce72482e63c5', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -44,7 +44,7 @@ class ComposerAutoloaderInit3bb70cd9ff78ae6aabc9ce72482e63c5
44
  }
45
  }
46
 
47
- function composerRequire3bb70cd9ff78ae6aabc9ce72482e63c5($file)
48
  {
49
  require $file;
50
  }
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitabeb439a6268374e0760449d85080be2
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInitabeb439a6268374e0760449d85080be2', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitabeb439a6268374e0760449d85080be2', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
44
  }
45
  }
46
 
47
+ function composerRequireabeb439a6268374e0760449d85080be2($file)
48
  {
49
  require $file;
50
  }
app/code/community/Expressly/Expressly/vendor/composer/installed.json CHANGED
@@ -668,8 +668,8 @@
668
  },
669
  {
670
  "name": "symfony/filesystem",
671
- "version": "v2.8.13",
672
- "version_normalized": "2.8.13.0",
673
  "source": {
674
  "type": "git",
675
  "url": "https://github.com/symfony/filesystem.git",
@@ -820,17 +820,17 @@
820
  },
821
  {
822
  "name": "expressly/php-common",
823
- "version": "2.4.2",
824
- "version_normalized": "2.4.2.0",
825
  "source": {
826
  "type": "git",
827
  "url": "https://github.com/expressly/php-common.git",
828
- "reference": "d402ce4c9b92fa18d92e6a093797214142b590e0"
829
  },
830
  "dist": {
831
  "type": "zip",
832
- "url": "https://api.github.com/repos/expressly/php-common/zipball/d402ce4c9b92fa18d92e6a093797214142b590e0",
833
- "reference": "d402ce4c9b92fa18d92e6a093797214142b590e0",
834
  "shasum": ""
835
  },
836
  "require": {
@@ -851,7 +851,7 @@
851
  "require-dev": {
852
  "phpunit/phpunit": "4.6.6"
853
  },
854
- "time": "2016-11-09 15:40:44",
855
  "type": "library",
856
  "installation-source": "dist",
857
  "autoload": {
@@ -870,7 +870,7 @@
870
  ],
871
  "description": "Expressly common PHP library",
872
  "support": {
873
- "source": "https://github.com/expressly/php-common/tree/2.4.2",
874
  "issues": "https://github.com/expressly/php-common/issues"
875
  }
876
  }
668
  },
669
  {
670
  "name": "symfony/filesystem",
671
+ "version": "v2.8.14",
672
+ "version_normalized": "2.8.14.0",
673
  "source": {
674
  "type": "git",
675
  "url": "https://github.com/symfony/filesystem.git",
820
  },
821
  {
822
  "name": "expressly/php-common",
823
+ "version": "2.5.0",
824
+ "version_normalized": "2.5.0.0",
825
  "source": {
826
  "type": "git",
827
  "url": "https://github.com/expressly/php-common.git",
828
+ "reference": "e06a5222e01139fb7b4cc165b025a47d7db066cd"
829
  },
830
  "dist": {
831
  "type": "zip",
832
+ "url": "https://api.github.com/repos/expressly/php-common/zipball/e06a5222e01139fb7b4cc165b025a47d7db066cd",
833
+ "reference": "e06a5222e01139fb7b4cc165b025a47d7db066cd",
834
  "shasum": ""
835
  },
836
  "require": {
851
  "require-dev": {
852
  "phpunit/phpunit": "4.6.6"
853
  },
854
+ "time": "2016-11-30 16:01:48",
855
  "type": "library",
856
  "installation-source": "dist",
857
  "autoload": {
870
  ],
871
  "description": "Expressly common PHP library",
872
  "support": {
873
+ "source": "https://github.com/expressly/php-common/tree/2.5.0",
874
  "issues": "https://github.com/expressly/php-common/issues"
875
  }
876
  }
app/code/community/Expressly/Expressly/vendor/expressly/php-common/composer.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "expressly/php-common",
3
- "version": "2.4.2",
4
  "type": "library",
5
  "description": "Expressly common PHP library",
6
  "require": {
1
  {
2
  "name": "expressly/php-common",
3
+ "version": "2.5.0",
4
  "type": "library",
5
  "description": "Expressly common PHP library",
6
  "require": {
app/code/community/Expressly/Expressly/vendor/expressly/php-common/src/Entity/EventDetails.php ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Expressly\Entity;
4
+
5
+ class EventDetails extends ArraySerializeable
6
+ {
7
+ protected $eventName;
8
+ protected $startTime;
9
+ protected $endTime;
10
+ protected $address1;
11
+ protected $address2;
12
+ protected $city;
13
+ protected $zip;
14
+ protected $stateProvince;
15
+ protected $country;
16
+
17
+ public static function compare(EventDetails $a, EventDetails $b)
18
+ {
19
+ return $a->toArray() == $b->toArray();
20
+ }
21
+
22
+ public function getEventName()
23
+ {
24
+ return $this->eventName;
25
+ }
26
+
27
+ public function setEventName($eventName)
28
+ {
29
+ $this->eventName = $eventName;
30
+
31
+ return $this;
32
+ }
33
+
34
+ public function getStartTime()
35
+ {
36
+ return $this->startTime;
37
+ }
38
+
39
+ public function setStartTime(\DateTime $startTime)
40
+ {
41
+ $startTime->setTimezone(new \DateTimeZone('UTC'));
42
+ $this->startTime = $startTime->format(\DateTime::ISO8601);
43
+ return $this;
44
+ }
45
+
46
+ public function getEndTime()
47
+ {
48
+ return $this->endTime;
49
+ }
50
+
51
+ public function setEndTime(\DateTime $endTime)
52
+ {
53
+ $endTime->setTimezone(new \DateTimeZone('UTC'));
54
+ $this->endTime = $endTime->format(\DateTime::ISO8601);
55
+ return $this;
56
+ }
57
+
58
+ public function getAddress1()
59
+ {
60
+ return $this->address1;
61
+ }
62
+
63
+ public function setAddress1($addressLine)
64
+ {
65
+ $this->address1 = $addressLine;
66
+
67
+ return $this;
68
+ }
69
+
70
+ public function getAddress2()
71
+ {
72
+ return $this->address2;
73
+ }
74
+
75
+ public function setAddress2($addressLine)
76
+ {
77
+ $this->address2 = $addressLine;
78
+
79
+ return $this;
80
+ }
81
+
82
+ public function getCity()
83
+ {
84
+ return $this->city;
85
+ }
86
+
87
+ public function setCity($city)
88
+ {
89
+ $this->city = $city;
90
+
91
+ return $this;
92
+ }
93
+
94
+ public function getZip()
95
+ {
96
+ return $this->zip;
97
+ }
98
+
99
+ public function setZip($zip)
100
+ {
101
+ $this->zip = $zip;
102
+
103
+ return $this;
104
+ }
105
+
106
+ public function getStateProvince()
107
+ {
108
+ return $this->stateProvince;
109
+ }
110
+
111
+ public function setStateProvince($stateProvince)
112
+ {
113
+ $this->stateProvince = $stateProvince;
114
+
115
+ return $this;
116
+ }
117
+
118
+ public function getCountry()
119
+ {
120
+ return $this->country;
121
+ }
122
+
123
+ public function setCountry($country)
124
+ {
125
+ $this->country = $country;
126
+
127
+ return $this;
128
+ }
129
+ }
app/code/community/Expressly/Expressly/vendor/expressly/php-common/src/Entity/Invoice.php CHANGED
@@ -18,6 +18,10 @@ class Invoice extends ArraySerializeable
18
  return $this;
19
  }
20
 
 
 
 
 
21
  public function addOrder(Order $order)
22
  {
23
  $this->orders[] = $order;
18
  return $this;
19
  }
20
 
21
+ public function hasOrders() {
22
+ return $this->orderCount > 0;
23
+ }
24
+
25
  public function addOrder(Order $order)
26
  {
27
  $this->orders[] = $order;
app/code/community/Expressly/Expressly/vendor/expressly/php-common/src/Presenter/BatchInvoicePresenter.php CHANGED
@@ -11,7 +11,7 @@ class BatchInvoicePresenter implements PresenterInterface
11
  public function __construct(array $invoices)
12
  {
13
  foreach ($invoices as $invoice) {
14
- if ($invoice instanceof Invoice) {
15
  $this->invoices[] = $invoice->toArray();
16
  }
17
  }
11
  public function __construct(array $invoices)
12
  {
13
  foreach ($invoices as $invoice) {
14
+ if ($invoice instanceof Invoice && $invoice->hasOrders()) {
15
  $this->invoices[] = $invoice->toArray();
16
  }
17
  }
app/code/community/Expressly/Expressly/vendor/expressly/php-common/src/Presenter/CustomerMigratePresenter.php CHANGED
@@ -3,6 +3,7 @@
3
  namespace Expressly\Presenter;
4
 
5
  use Expressly\Entity\Customer;
 
6
  use Expressly\Entity\Merchant;
7
 
8
  class CustomerMigratePresenter implements PresenterInterface
@@ -10,16 +11,18 @@ class CustomerMigratePresenter implements PresenterInterface
10
  private $merchant;
11
  private $customer;
12
  private $email;
 
13
  private $reference;
14
  private $locale;
15
 
16
- public function __construct(Merchant $merchant, Customer $customer, $email, $reference, $locale = 'en')
17
  {
18
  $this->merchant = $merchant;
19
  $this->customer = $customer;
20
  $this->email = $email;
21
  $this->reference = $reference;
22
  $this->locale = $locale;
 
23
  }
24
 
25
  public function toArray()
@@ -34,11 +37,12 @@ class CustomerMigratePresenter implements PresenterInterface
34
  )
35
  )
36
  ),
37
- 'data' => array(
38
  'email' => $this->email,
39
  'userReference' => $this->reference,
40
- 'customerData' => $this->customer->toArray()
41
- )
 
42
  );
43
  }
44
  }
3
  namespace Expressly\Presenter;
4
 
5
  use Expressly\Entity\Customer;
6
+ use Expressly\Entity\EventDetails;
7
  use Expressly\Entity\Merchant;
8
 
9
  class CustomerMigratePresenter implements PresenterInterface
11
  private $merchant;
12
  private $customer;
13
  private $email;
14
+ private $eventDetails;
15
  private $reference;
16
  private $locale;
17
 
18
+ public function __construct(Merchant $merchant, Customer $customer, $email, $reference, $locale = 'en', EventDetails $eventDetails = null)
19
  {
20
  $this->merchant = $merchant;
21
  $this->customer = $customer;
22
  $this->email = $email;
23
  $this->reference = $reference;
24
  $this->locale = $locale;
25
+ $this->eventDetails = $eventDetails;
26
  }
27
 
28
  public function toArray()
37
  )
38
  )
39
  ),
40
+ 'data' => array_filter(array(
41
  'email' => $this->email,
42
  'userReference' => $this->reference,
43
+ 'customerData' => $this->customer->toArray(),
44
+ 'eventData' => $this->eventDetails == null ? null : $this->eventDetails->toArray()
45
+ ))
46
  );
47
  }
48
  }
app/etc/modules/Expressly_Expressly.xml CHANGED
@@ -4,7 +4,7 @@
4
  <Expressly_Expressly>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
- <version>2.4.3</version>
8
  </Expressly_Expressly>
9
  </modules>
10
  </config>
4
  <Expressly_Expressly>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
+ <version>2.5.0</version>
8
  </Expressly_Expressly>
9
  </modules>
10
  </config>
package.xml CHANGED
@@ -1,2 +1,2 @@
1
  <?xml version="1.0"?>
2
- <package><name>Expressly</name><version>2.4.3</version><stability>stable</stability><license>MIT</license><channel>community</channel><extends></extends><summary>Expressly is a customer referral network that allows merchants to find partner merchants and launch customer acquisition campaigns to their respective audiences. Full instructions, and registration at www.buyexpressly.com</summary><description>Expressly is a customer referral network where merchants connect with each other to acquire customers and drive sales. On the Expressly Network, you can find the perfect match with a non-competing (usually complementary) merchant. If the connection is then accepted, you will be able to acquire new customers and drive your sales up. Thanks to our unique customer journey, customers won't have to register to your site again, removing unnecessary friction. We are able to migrate their data, saving them time and delivering to you a real customer with one click. This will amazingly increase your conversions rates at a surprisingly cheap cost. Full instructions and registration at www.buyexpressly.com</description><notes>https://github.com/expressly/magento/releases</notes><authors><author><name>Expressly</name><user>Expressly</user><email>info@expressly.com</email></author></authors><date>2016-11-14</date><time>16:10:25</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><file name="LICENSE" hash="2a627f33b90e562d84e2882c37c18aa6"/><dir name="app"><dir name="code"><dir name="community"><dir name="Expressly"><dir name="Expressly"><file name="composer.json" hash="d975199bb9ec13695adf5a564d83c249"/><file name="composer.lock" hash="4ff776d6047c420c951b50bda9aba38f"/><dir name="Block"><file name="Banner.php" hash="7154e48a71bb942754ae6eff668c38c0"/><file name="Popup.php" hash="095679e404486fffb5f401d658b4be2e"/><dir name="System"><dir name="Config"><dir name="Form"><file name="ImageUrl.php" hash="bd72e6997b9334857442113912766ec0"/><file name="Register.php" hash="fef0737ed8f02a3dc16c81c7c5f1d8cd"/></dir></dir></dir></dir><dir name="Model"><file name="Observer.php" hash="1f3d7b34d719a103d5e6db1ccd506c9d"/><dir name="Resource"><file name="Setup.php" hash="d3a39e96deb9351a8aa63efa480fca3a"/></dir></dir><dir name="controllers"><file name="AbstractController.php" hash="1520e6c089e3697c9719be178eede9ae"/><file name="BatchController.php" hash="8ff03451e86c6d73fe322c74a3d9f6ef"/><file name="CustomerController.php" hash="7d5964bd25e30033703a8ea527a820a4"/><file name="UtilityController.php" hash="a99a0e4bc8e81643a6a063a81ebbf655"/></dir><dir name="vendor"><file name="autoload.php" hash="64f2381f4b0042bd45984061646da385"/><dir name="kriswallsmith"><dir name="buzz"><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="1cd15dd0ede3985fdb0c92e1b5bf6849"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/><dir name="Form"><file name="FormRequest.php" hash="0e7fa3557c44a99b3254541b23132994"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir></dir><dir name="Client"><file name="AbstractClient.php" hash="bd63f448d7f7a56e0efb4482c472f67e"/><file name="AbstractCurl.php" hash="85f6d37d542b8562d50f5fb6c1366b1b"/><file name="AbstractStream.php" hash="bde9a74a53db1f84f9cdaacc00eb3cae"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="7229d3f714a11bdbbde12c8a167d131a"/><file name="FileGetContents.php" hash="f0931e8dd1e460e81c79004a4ef4a07d"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir></dir></dir><dir name="symfony"><dir name="debug"><dir name="Symfony"><dir name="Component"><dir name="Debug"><file name="CHANGELOG.md" hash="a358a6f8744e03930d1c28580263cdd8"/><file name="Debug.php" hash="cd788b7a81c5b491f9649cf750770196"/><file name="DebugClassLoader.php" hash="517eb50b9896e9bd91a077de927934c6"/><file name="ErrorHandler.php" hash="bd1c0f1cfb3f94ac5ed9ba7709d57ae9"/><file name="ExceptionHandler.php" hash="023f914b9083a5b6cf8e185b0ab8ba53"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="c51c77c10d4f9e42c79cdbd94600cdef"/><file name="composer.json" hash="6781b755060a3c71f38e0181b863bacb"/><file name="phpunit.xml.dist" hash="08aefd4577d081d880e951a43e818ac2"/><dir name="Resources"><dir name="ext"><file name="README.rst" hash="3a073493d13544dd25f1c73765c148f5"/><file name="config.m4" hash="2f36d0e51121313a69833ff5f1216618"/><file name="config.w32" hash="6f6a05fe8d0c4d68ad20277676882d5c"/><file name="php_symfony_debug.h" hash="3209be2f8c9a8b2c635fc7ea263b57f2"/><file name="symfony_debug.c" hash="ff9e019c5f5f1ad1daee96cbdfd558c7"/><dir name="tests"><file name="001.phpt" hash="167030a520a11d6c60aeea3bead13884"/></dir></dir></dir><dir name="Exception"><file name="ClassNotFoundException.php" hash="59a3503e9bd79a8b76ae37c211797803"/><file name="ContextErrorException.php" hash="9c3d7d991e4f241db9c9bfc690f25290"/><file name="DummyException.php" hash="3174476dfa007d8cdbfe4800a134ebe0"/><file name="FatalBaseException.php" hash="97d8d45fa98bbfdb07ee31f63e82b401"/><file name="FatalErrorException.php" hash="3a64d3b8ce0dd1deb78cd251bac952ab"/><file name="FlattenException.php" hash="889ba604e1612133e5cab02e910d72fe"/><file name="OutOfMemoryException.php" hash="4313b0aca7604ae9662028ddf4fb738b"/><file name="UndefinedFunctionException.php" hash="a86b159939b91aa3bc307442ecbdec2c"/><file name="UndefinedMethodException.php" hash="efd25669d2202ead3db13ad55874db67"/></dir><dir name="FatalErrorHandler"><file name="ClassNotFoundFatalErrorHandler.php" hash="d7c83ada98b868b2bf5d41a26bb20ac8"/><file name="FatalErrorHandlerInterface.php" hash="129494cd2b2ad50cc3d6514da02dcce6"/><file name="UndefinedFunctionFatalErrorHandler.php" hash="bb4e5ecc07982760c1f1b29b199fc348"/><file name="UndefinedMethodFatalErrorHandler.php" hash="2c76ec3df935f312a8afd825c93faab7"/></dir></dir></dir></dir></dir><dir name="filesystem"><file name="CHANGELOG.md" hash="e4cb8b1514c6138f5e09aa0d1f74c5e1"/><file name="Filesystem.php" hash="8c28be380af78885a2461b2df6b60673"/><file name="LICENSE" hash="b4e1c29292cf1d95350bbe72f30d6825"/><file name="LockHandler.php" hash="04cb0e05a01ace88e64139f44188791a"/><file name="README.md" hash="39f5ff23d8316ece715014a760793117"/><file name="composer.json" hash="6fdcef26148676a6b2c6ec98ace3eb4f"/><file name="phpunit.xml.dist" hash="8a5e5a3ec9a19dfb71ca77b5da6bc76d"/><dir name="Exception"><file name="ExceptionInterface.php" hash="34db82450fb4585dc0062b887e162936"/><file name="FileNotFoundException.php" hash="5b777960995ad86b080c4bcd4fb2bca2"/><file name="IOException.php" hash="1bf882a413ec45ec59da4cf55c8afcd0"/><file name="IOExceptionInterface.php" hash="600e02292dadf55b8735ef5c818ddeed"/></dir></dir><dir name="http-foundation"><dir name="Symfony"><dir name="Component"><dir name="HttpFoundation"><file name="AcceptHeader.php" hash="2c2a2e96f15c38396572d8872cce87f7"/><file name="AcceptHeaderItem.php" hash="5e6b4270fd130be21f73259e46000381"/><file name="ApacheRequest.php" hash="428aaf05f7b32d9b5b0f21b5ff926bf0"/><file name="BinaryFileResponse.php" hash="be7627d7462520bbae03206a5cb97744"/><file name="CHANGELOG.md" hash="f659307b596519c51d204dce53b4f233"/><file name="Cookie.php" hash="90b8c19331f74246c3972ff3a6d35856"/><file name="ExpressionRequestMatcher.php" hash="bb322f1b660d8526d54738c96bcc9496"/><file name="FileBag.php" hash="0da2b6f20ac9bd59879e555fee7f4374"/><file name="HeaderBag.php" hash="e83ec85868157644d66e28585b982823"/><file name="IpUtils.php" hash="b375880700f83b741964f82f4f27e797"/><file name="JsonResponse.php" hash="eea78bbbf379200ff16980c88fd3f217"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="ParameterBag.php" hash="7966dfb3c917d10d1088a258a1e0bd3c"/><file name="README.md" hash="c439eb808e6c558555b0b3171f3ed158"/><file name="RedirectResponse.php" hash="1efb3ee54b879e5bc6e6dcd1b806777b"/><file name="Request.php" hash="65cc7bdfc393dcf4244d48ba94028690"/><file name="RequestMatcher.php" hash="2e388cf8d4bcff9b7e066fbccd2f92eb"/><file name="RequestMatcherInterface.php" hash="f088ae827db024f229a6bcd1f44da7ee"/><file name="RequestStack.php" hash="6635bfddbb6f820300e90351ca7f1592"/><file name="Response.php" hash="2076d61d389465d849697bab4317b6ce"/><file name="ResponseHeaderBag.php" hash="862c68bee3f94bc5fb3a9f14c0faf19f"/><file name="ServerBag.php" hash="8fd39b59ed0860b866cb4650fd9fb0bc"/><file name="StreamedResponse.php" hash="e6231e50ce0f49905b39feeeb7202bd6"/><file name="composer.json" hash="5201c8baddc67095812680a458ffa1bc"/><file name="phpunit.xml.dist" hash="c1bc5f03f30c944fd2ae98a4d8b0c7fe"/><dir name="Resources"><dir name="stubs"><file name="SessionHandlerInterface.php" hash="e4be5b7296a343d87234186ac29d5fba"/></dir></dir><dir name="Session"><file name="Session.php" hash="b25cb46112eac2e01f6d48a0c89c4716"/><file name="SessionBagInterface.php" hash="80889e7aa69a1c2bedcf649cae06c42d"/><file name="SessionInterface.php" hash="ef5a2def9e8823f848210338bea83df8"/><dir name="Attribute"><file name="AttributeBag.php" hash="056c87cb2711ca9728f6b80ca87e72e7"/><file name="AttributeBagInterface.php" hash="bb5d0a3c10afbf4a0eca346589214dea"/><file name="NamespacedAttributeBag.php" hash="d60132f62cb38954b83ca724ecc9e044"/></dir><dir name="Flash"><file name="AutoExpireFlashBag.php" hash="b58dd34144fe94305e3c76b418ad2045"/><file name="FlashBag.php" hash="03f3a009de01012a2d3579d63f5f183f"/><file name="FlashBagInterface.php" hash="9b5c9c155cafb9552dc5ce50efcf5e68"/></dir><dir name="Storage"><file name="MetadataBag.php" hash="30c7bb7b760747cdbf05bfc71dc3fec8"/><file name="MockArraySessionStorage.php" hash="a9a99d9b0d7376355cd205a7465670f7"/><file name="MockFileSessionStorage.php" hash="9afc135a2b2bf2d3020cc4bd9884743b"/><file name="NativeSessionStorage.php" hash="d374a5f695bdae9f3c5ada3cdf0cd06e"/><file name="PhpBridgeSessionStorage.php" hash="ca1002d127638aa520e5d1ae025aee11"/><file name="SessionStorageInterface.php" hash="1f44c7ddf2ad5aa6bdd2662a8b5936c2"/><dir name="Proxy"><file name="AbstractProxy.php" hash="edd427e88b5eccbcd11f61911d2314bf"/><file name="NativeProxy.php" hash="b6d244a2c8ac4258fd6ba058b6e73590"/><file name="SessionHandlerProxy.php" hash="4ad8174e61231a9d6cde25cdfe8ad6cf"/></dir><dir name="Handler"><file name="LegacyPdoSessionHandler.php" hash="c75543926d9cde85460afe55da6a9207"/><file name="MemcacheSessionHandler.php" hash="d10a2f87c6fc7996d9111e93ffdd82ba"/><file name="MemcachedSessionHandler.php" hash="4a6eb5465e0c7ccf2cfafa5f3b0e7874"/><file name="MongoDbSessionHandler.php" hash="3dd6282031cfd961589cbdc306b6e381"/><file name="NativeFileSessionHandler.php" hash="fe93aa5204757c30501b59d3ab98550b"/><file name="NativeSessionHandler.php" hash="3b84434b81084819ebfd2a994bd6f7b0"/><file name="NullSessionHandler.php" hash="f5a66096e4e7ada546f558221d1f6159"/><file name="PdoSessionHandler.php" hash="45498fbe94b82fd4e64cfb9a70b9a8aa"/><file name="WriteCheckSessionHandler.php" hash="49bc59ca9ebe5b6fbf9a4aae279fe76e"/></dir></dir></dir><dir name="File"><file name="File.php" hash="ea256b7cb4cb6d077967f51003bae39a"/><file name="UploadedFile.php" hash="6ec04eb871dafb7dccb9364da0ae340b"/><dir name="Exception"><file name="AccessDeniedException.php" hash="f857d7f53c52b92f5b86304b3380b099"/><file name="FileException.php" hash="33ff8592de1c97382cbf3264f5f3dfc9"/><file name="FileNotFoundException.php" hash="4a66cf7eaf34a81103d4b9c1f91723cb"/><file name="UnexpectedTypeException.php" hash="098936dfa215052c68b1002c28d276f4"/><file name="UploadException.php" hash="cac23f7007e150884750f7ebe5142326"/></dir><dir name="MimeType"><file name="ExtensionGuesser.php" hash="1dab816faf22ccdafb8fce27f999a279"/><file name="ExtensionGuesserInterface.php" hash="220e6e6ef231841ac1ee6378475b20f9"/><file name="FileBinaryMimeTypeGuesser.php" hash="f62592b21c4ec902a1692e7c2f78c0eb"/><file name="FileinfoMimeTypeGuesser.php" hash="4067410e9471075b49d4d47d3ab38420"/><file name="MimeTypeExtensionGuesser.php" hash="588e676696a46c221969b25f98298223"/><file name="MimeTypeGuesser.php" hash="9e72a2d6bc9b74185f5810e5a0fd39d1"/><file name="MimeTypeGuesserInterface.php" hash="2426b7805c551adb7193d3514d013b7a"/></dir></dir></dir></dir></dir></dir><dir name="monolog-bridge"><dir name="Symfony"><dir name="Bridge"><dir name="Monolog"><file name="CHANGELOG.md" hash="094d6ae95193dc93574972855a7d4832"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="Logger.php" hash="27c5f10435a78e290ec8ac3cfc248318"/><file name="README.md" hash="6ed8293be5da72ba7c55961f646c4fd8"/><file name="composer.json" hash="65c151dab71c7917546af9ce2dc17642"/><file name="phpunit.xml.dist" hash="fdf89201b4cf373b7a34e2c47857fa95"/><dir name="Processor"><file name="WebProcessor.php" hash="67e3137264fa8b61731c759134d0b8b7"/></dir><dir name="Handler"><file name="ChromePhpHandler.php" hash="802bc632e18f892ac6149df81b785064"/><file name="ConsoleHandler.php" hash="71bc89a0d486b815c92a6552599e9652"/><file name="DebugHandler.php" hash="450ee4aa4f8ff115dc3299b5dcdb52d2"/><file name="FirePHPHandler.php" hash="7fc6f9e4753cf67533a0ca3ca0615508"/><file name="SwiftMailerHandler.php" hash="65d9b7f8bd3838197c58f97476af73a8"/><dir name="FingersCrossed"><file name="NotFoundActivationStrategy.php" hash="1e0758ae14cad212d3c83378934145d6"/></dir></dir><dir name="Formatter"><file name="ConsoleFormatter.php" hash="770271a4d444a5edd938fde8d3329f95"/></dir></dir></dir></dir></dir><dir name="yaml"><dir name="Symfony"><dir name="Component"><dir name="Yaml"><file name="CHANGELOG.md" hash="00392ab3e6199c8363f9e53646f7da22"/><file name="Dumper.php" hash="da5f26a9f132aa1c83996767cde64e5c"/><file name="Escaper.php" hash="dcf2150e3154d37a4db78a43ddd09cd7"/><file name="Inline.php" hash="543e0ba6bb305c57edcf69134e0bf3e0"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="Parser.php" hash="ca5e576d27cdccf20c4fea75864c5c5d"/><file name="README.md" hash="323b328917558713567b091575524ec8"/><file name="Unescaper.php" hash="b60938a84538e8ee3937031ba5dec981"/><file name="Yaml.php" hash="900b9ca2478ff2e09f0de764d2a1933d"/><file name="composer.json" hash="2bb96d42e9a1251fc0025a9c1add90d4"/><file name="phpunit.xml.dist" hash="ce48037a1863cbad107ffc4e754bb8a8"/><dir name="Exception"><file name="DumpException.php" hash="40b05314535a494039c342a01e1d10d2"/><file name="ExceptionInterface.php" hash="a7ee6ec67e04faa2c2c29fef8adfc4fa"/><file name="ParseException.php" hash="08d1c10098a76595c49c58a3319327db"/><file name="RuntimeException.php" hash="39bbaf9ae8b207093e4b8a9c09cdb081"/></dir></dir></dir></dir></dir><dir name="event-dispatcher"><dir name="Symfony"><dir name="Component"><dir name="EventDispatcher"><file name="CHANGELOG.md" hash="745dd467bb8d944ee82b38034a3b71d2"/><file name="ContainerAwareEventDispatcher.php" hash="0bcadf91749e82c0e6f3ad64c89be078"/><file name="Event.php" hash="ec4077bd7b6bf237bec7136cbef589e0"/><file name="EventDispatcher.php" hash="726413ae13dfec061f23b8fff4235d25"/><file name="EventDispatcherInterface.php" hash="571cc8d5ac702f06eacaa849e3774226"/><file name="EventSubscriberInterface.php" hash="c14793051c0916ae555a170db42d635c"/><file name="GenericEvent.php" hash="57592b7539db9e18dc64528de170050a"/><file name="ImmutableEventDispatcher.php" hash="2aa90b7e3856053d0d6100d6e13832f8"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="ce7f9b787b9c507c07d1e6e36254a7e7"/><file name="composer.json" hash="f2ff5d79977cd6bc0d3b60cf1b1894bf"/><file name="phpunit.xml.dist" hash="80e32ada6de2dd8b634ed666650fc87e"/><dir name="DependencyInjection"><file name="RegisterListenersPass.php" hash="737fe94715322e3c7d2b1a06da312f3f"/></dir><dir name="Debug"><file name="TraceableEventDispatcher.php" hash="c4e84cc92b835e7acc5d4a5df9b25aef"/><file name="TraceableEventDispatcherInterface.php" hash="aa09cc5a555cfad4239045906e2850b0"/><file name="WrappedListener.php" hash="b25eea7b4663606e7ee568151f63f246"/></dir></dir></dir></dir></dir><dir name="http-kernel"><dir name="Symfony"><dir name="Component"><dir name="HttpKernel"><file name="CHANGELOG.md" hash="64f70457111c73b63dd9948808523f36"/><file name="Client.php" hash="1767d59347710d07aa85811e785ae917"/><file name="HttpKernel.php" hash="0d0fc44918e53b10a1450950acee6d45"/><file name="HttpKernelInterface.php" hash="a2515758373d2ce4bc2ebad993a8efb3"/><file name="Kernel.php" hash="b508c04e3530968c61200137125373c9"/><file name="KernelEvents.php" hash="59f3519d5ccc1d82941951871dd6762a"/><file name="KernelInterface.php" hash="f972f1e1b9787a093c8b233f8c62572d"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="777d542c9079db92db6e4b2f8f2e6db6"/><file name="TerminableInterface.php" hash="63651d1c2efa91187e171c23fa108bcc"/><file name="UriSigner.php" hash="ea7ab50104ed2996b8103081a1badb59"/><file name="composer.json" hash="26388afd7074e741d02a9265a1222df0"/><file name="phpunit.xml.dist" hash="8d819f3309f0cab142bee84a1530f4cc"/><dir name="CacheClearer"><file name="CacheClearerInterface.php" hash="1ab9fcfe250122ae01956d7d1df16c01"/><file name="ChainCacheClearer.php" hash="669169b998719a6ab22a69a976066631"/></dir><dir name="Controller"><file name="ControllerReference.php" hash="e0d2a33d75d4fec72e8525f4cd097046"/><file name="ControllerResolver.php" hash="40a908fbee757a40f34618774cccdd98"/><file name="ControllerResolverInterface.php" hash="743a4faee533d426fe09db12e53501ab"/><file name="TraceableControllerResolver.php" hash="25b16c005e61a48d621c219456d553bc"/></dir><dir name="Fragment"><file name="AbstractSurrogateFragmentRenderer.php" hash="c93ab30351de872e7cdf0eb33044d7d2"/><file name="EsiFragmentRenderer.php" hash="7358b48c1106ba54d9d1213d1de9e8e9"/><file name="FragmentHandler.php" hash="8cb81a2cba4f308f00a5374595d9ce88"/><file name="FragmentRendererInterface.php" hash="91f6b0f5da5a6e3bf2d9d7466ea8a08a"/><file name="HIncludeFragmentRenderer.php" hash="232e3f1f87eb370ba181bc55425515f7"/><file name="InlineFragmentRenderer.php" hash="c4114dd052bce3c8c9ea57439f0b77c2"/><file name="RoutableFragmentRenderer.php" hash="0071fc47cfd246fe3b8a143dd4beaa10"/><file name="SsiFragmentRenderer.php" hash="71383b6093ca7f08bf119f8c86026c06"/></dir><dir name="DependencyInjection"><file name="AddClassesToCachePass.php" hash="deb0d0189428240a5d06c02b24caa68f"/><file name="ConfigurableExtension.php" hash="9b2af751ef894bbb7f86fa7d763821c3"/><file name="ContainerAwareHttpKernel.php" hash="12960ef346b18a127742a5cda62960ac"/><file name="Extension.php" hash="da97a0908acb2f0576a735ee424f424d"/><file name="MergeExtensionConfigurationPass.php" hash="aef8eb59f79f4881d9f63e831c3c8546"/><file name="RegisterListenersPass.php" hash="ac6bbd18966411904d49cf73be6cb880"/></dir><dir name="Exception"><file name="AccessDeniedHttpException.php" hash="f5c23e90811d0ca9f89f959a44df67a6"/><file name="BadRequestHttpException.php" hash="2a8d0dab1cc3317b047c56e9911b3528"/><file name="ConflictHttpException.php" hash="94b6830863787a794c90b7facfd6c8bd"/><file name="FatalErrorException.php" hash="7bb1593fe84d0d2b573b72c008c0dbb8"/><file name="FlattenException.php" hash="cfea9542318121dddfa26dba9d1b106b"/><file name="GoneHttpException.php" hash="9db86cc7d9bcd454f26eeac90f7c3505"/><file name="HttpException.php" hash="dff8d6e0c64447e27bc68937a77dddd4"/><file name="HttpExceptionInterface.php" hash="69cdccd7a9953e3751614a3a6277f5c1"/><file name="LengthRequiredHttpException.php" hash="3bd9b015b4ba0740ab41737d32032f14"/><file name="MethodNotAllowedHttpException.php" hash="a42c8480c4d9ad8d17d1a1c881c744b2"/><file name="NotAcceptableHttpException.php" hash="0de9678a06efa1aca487531aa98d7a8d"/><file name="NotFoundHttpException.php" hash="42ccbf295404774e0d52f34f74647c08"/><file name="PreconditionFailedHttpException.php" hash="ea3b4923f43317aa2d4df9e213c2acfc"/><file name="PreconditionRequiredHttpException.php" hash="29194a8089afacd4f8727052cf682234"/><file name="ServiceUnavailableHttpException.php" hash="db013650b3f4ee5c7c94a28956df8293"/><file name="TooManyRequestsHttpException.php" hash="0186da1457636a79428955bf3c0f1dd6"/><file name="UnauthorizedHttpException.php" hash="21bac18e9a6d51f11d7c630c825274f7"/><file name="UnprocessableEntityHttpException.php" hash="c07cbc4e862a2682d90c55075dee5fbc"/><file name="UnsupportedMediaTypeHttpException.php" hash="c03b7cd458a039387516e00e15a1657d"/></dir><dir name="EventListener"><file name="AddRequestFormatsListener.php" hash="982f6c8f9187397e6721fe33434a20a4"/><file name="DebugHandlersListener.php" hash="570da49455180f7ed1873bab53d7e14c"/><file name="DumpListener.php" hash="d12b376ad61a8ec55589bb1b9b4d91df"/><file name="ErrorsLoggerListener.php" hash="742c8b2acd219dc07e9fc3aa174f5abc"/><file name="EsiListener.php" hash="e5f5c2978d7a4dc651a6df5562b35816"/><file name="ExceptionListener.php" hash="642035fd6c9bc10b630c7ec32a0aa303"/><file name="FragmentListener.php" hash="49601202d7bd0fc5cae7ed83cb4e38dd"/><file name="LocaleListener.php" hash="b300d4915a4478d77599e2cc5899f553"/><file name="ProfilerListener.php" hash="681dd51adeaa98a167c6d6aac6512410"/><file name="ResponseListener.php" hash="9f012c160c2b78e89e457aed4c054cf0"/><file name="RouterListener.php" hash="f6adb08ab4c8ac467942c9323926307d"/><file name="SaveSessionListener.php" hash="b9ee738b82076cbe2b63e31ff9ab4095"/><file name="SessionListener.php" hash="e31eeb0ff113b983758c287ff1209a03"/><file name="StreamedResponseListener.php" hash="57b574b30b287bfbe406beba0769749b"/><file name="SurrogateListener.php" hash="97e34c631aef5efd6c5f386c9af71e7d"/><file name="TestSessionListener.php" hash="6ef130519ea535d8c0c36bb765e41a63"/><file name="TranslatorListener.php" hash="c04748aa73262f5a4800657ce5068a82"/></dir><dir name="HttpCache"><file name="Esi.php" hash="361f545bc8d1b662127083c7e3fec8ed"/><file name="EsiResponseCacheStrategy.php" hash="184676d1492718f06f8decd542bfd344"/><file name="EsiResponseCacheStrategyInterface.php" hash="7b6e19350122f44a50ab1c2cab09f729"/><file name="HttpCache.php" hash="81c9f3269d45d1c0c506b9e8b3bfed81"/><file name="ResponseCacheStrategy.php" hash="c9ee85d0a70acb171355e0b354d52cae"/><file name="ResponseCacheStrategyInterface.php" hash="1b0fc56b2a99d7ec0c1635684034fdfd"/><file name="Ssi.php" hash="5c2f513f82cfc1911d2e43d684650c2d"/><file name="Store.php" hash="6f45f65fd9c47f69dc206a844eabdf76"/><file name="StoreInterface.php" hash="6833d375de947233ef2706a6238a4c1e"/><file name="SurrogateInterface.php" hash="aa6deb0aaf61ff02b1d2be4dd8b8560a"/></dir><dir name="Bundle"><file name="Bundle.php" hash="955b5995942fcb044d8dbcc4faa9da23"/><file name="BundleInterface.php" hash="eced991d4b8fe038cf5a39d571e03389"/></dir><dir name="Profiler"><file name="BaseMemcacheProfilerStorage.php" hash="ea8be899fd23132963a5186c4d28c4cd"/><file name="FileProfilerStorage.php" hash="0fbf5d9ce3622610288ba569f5561199"/><file name="MemcacheProfilerStorage.php" hash="8020b07be324fd98b1a7eb99a66800df"/><file name="MemcachedProfilerStorage.php" hash="e2a55bf9bbcdfcfa998c6e9d5a9b4c37"/><file name="MongoDbProfilerStorage.php" hash="88da73c581749c40b6959c2272829a0c"/><file name="MysqlProfilerStorage.php" hash="40a6f005bc2651c959cd6c7e4c4e6fe7"/><file name="PdoProfilerStorage.php" hash="86ca5374070e8d9932f937ef5db04443"/><file name="Profile.php" hash="0be27aed1ea1e68b0ee6d1a6f98f27d1"/><file name="Profiler.php" hash="6b8efd715e55b8dab765334c7db4d542"/><file name="ProfilerStorageInterface.php" hash="54e128308fa77bc58caa221ecec06849"/><file name="RedisProfilerStorage.php" hash="d035413059f96912e413667138224646"/><file name="SqliteProfilerStorage.php" hash="b69028b6ff27fff88714b26e65d6d6cf"/></dir><dir name="Debug"><file name="ErrorHandler.php" hash="ab27b3a991a404a9f83ad33c137ddc64"/><file name="ExceptionHandler.php" hash="abd0e561ece8935db9925995726a9c3a"/><file name="TraceableEventDispatcher.php" hash="c119b6767f174cf74f0836236acd6b46"/></dir><dir name="DataCollector"><file name="ConfigDataCollector.php" hash="64e5901ca6f117ba42ed516f3a3be935"/><file name="DataCollector.php" hash="fffc62a17a6e04d2fe2513765986c989"/><file name="DataCollectorInterface.php" hash="ffd4ec58caeabebaab60382110104899"/><file name="DumpDataCollector.php" hash="6a1404dcff8fc6e68f176a2bb36688d1"/><file name="EventDataCollector.php" hash="3bc713326c25951469bb7370f3190ca1"/><file name="ExceptionDataCollector.php" hash="6d802ac641d1127dd8dfe1fedcf2ac3e"/><file name="LateDataCollectorInterface.php" hash="3cbcfac5aa0d0d92b5ffe9bfbdb4379d"/><file name="LoggerDataCollector.php" hash="92cf3502d49f0d6a184fe6516fd2e73d"/><file name="MemoryDataCollector.php" hash="7829c43d15e1fbbaf8073929ec6fcb72"/><file name="RequestDataCollector.php" hash="d1547d4fdb4c1e959e9d2561924638a8"/><file name="RouterDataCollector.php" hash="b4b2d1de5a23fc8497f2157a574a99ec"/><file name="TimeDataCollector.php" hash="0ff1c49363748058ab7d80a482f4f715"/><dir name="Util"><file name="ValueExporter.php" hash="cc2a3a0e170095a5916b12ad1dfd28ea"/></dir></dir><dir name="CacheWarmer"><file name="CacheWarmer.php" hash="7435d5f981a3db589251151722cebbf0"/><file name="CacheWarmerAggregate.php" hash="6d276fc13becdbd2b5d48fc3148a23d8"/><file name="CacheWarmerInterface.php" hash="c128c3b99e2fa824c07c04c25f88d4e4"/><file name="WarmableInterface.php" hash="d0ccc4f26ea62bd6a3d1c528664b49b5"/></dir><dir name="Config"><file name="EnvParametersResource.php" hash="7e3653168bc3226d8f794795e9117ba4"/><file name="FileLocator.php" hash="359205d8174282bfb5b97f0a018e9e78"/></dir><dir name="Event"><file name="FilterControllerEvent.php" hash="7395234944fb9d41740f90342a2e1223"/><file name="FilterResponseEvent.php" hash="968dd6a4de0885c0f1d33beead597ff5"/><file name="FinishRequestEvent.php" hash="aae774c8c1c640f429459d3800a02806"/><file name="GetResponseEvent.php" hash="775cdb03532229d6174aa802d57dff42"/><file name="GetResponseForControllerResultEvent.php" hash="3c859e636dd03dbffff73b2aad547a3a"/><file name="GetResponseForExceptionEvent.php" hash="6dc97440900238f81b7c5f1f6104cb68"/><file name="KernelEvent.php" hash="631733a6e41e58d8ab1128df33a0bee5"/><file name="PostResponseEvent.php" hash="8c361b4ea8d7123572a8df3ec171c0ab"/></dir><dir name="Log"><file name="DebugLoggerInterface.php" hash="f4d0021f6fc5f6916f6b799bf89c2657"/><file name="LoggerInterface.php" hash="3868efe0c395e3f8272ae0e5c633e976"/><file name="NullLogger.php" hash="bd06d8cf784dfbc64b581a1f4ccd0bcf"/></dir></dir></dir></dir></dir><dir name="config"><dir name="Symfony"><dir name="Component"><dir name="Config"><file name="CHANGELOG.md" hash="2e855ecea3b2fd176fcde9dcbee078b4"/><file name="ConfigCache.php" hash="42fe66cd64cd32ea55cefd056c7a1b67"/><file name="FileLocator.php" hash="026635098bb87b0f3d9aa9db277372ea"/><file name="FileLocatorInterface.php" hash="19f6ce347d97710e6e204f6072080d7f"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="af54897b0accbcf3a8b4cb928ae315df"/><file name="composer.json" hash="15b5397737babc3051928cc11f2a9205"/><file name="phpunit.xml.dist" hash="2c94ed9c9ab9748fa3e87ebea246eff4"/><dir name="Loader"><file name="DelegatingLoader.php" hash="55f0bb12cab11e866f3b8dc990acfe44"/><file name="FileLoader.php" hash="ba9b0b86d956b8d0508702da64bae50d"/><file name="Loader.php" hash="ee72e1f5134967e385909103288f1f28"/><file name="LoaderInterface.php" hash="186d2f94152a27ccec52ef09dee3ff5b"/><file name="LoaderResolver.php" hash="fa0e5cf636fcb699349bc383ac1c58e4"/><file name="LoaderResolverInterface.php" hash="b5b88cd457cd2722513763f34d91181f"/></dir><dir name="Resource"><file name="DirectoryResource.php" hash="0dd51e1fce277a9dac05d77eb98553dc"/><file name="FileResource.php" hash="2ad38ca3a131d8ca2b81b7df2d048e44"/><file name="ResourceInterface.php" hash="8f062b489e002da9b8c9fedde7686f53"/></dir><dir name="Definition"><file name="ArrayNode.php" hash="621802994afbf85c05dd1a2290ec2eed"/><file name="BaseNode.php" hash="4e1c72481d5d85f9347494885976831a"/><file name="BooleanNode.php" hash="b90e36133771d6308a12b493bda51f9b"/><file name="ConfigurationInterface.php" hash="2715dbdacacd877e377fbdbd4ad1ec90"/><file name="EnumNode.php" hash="4718c796e11ef0403e41dce26b7224ea"/><file name="FloatNode.php" hash="ce9677559c3fdeaa47f5445752c0386b"/><file name="IntegerNode.php" hash="03a546fe92c089fec0fd60c2b07e4597"/><file name="NodeInterface.php" hash="6f9786dc687247c82fe66f20030d3045"/><file name="NumericNode.php" hash="75d9c7fc5aa9188383c41a3b9db09ba9"/><file name="Processor.php" hash="4d853174c3a8b201b3684fd8cdc5b768"/><file name="PrototypeNodeInterface.php" hash="ef44def01e8a4abfa4eaabdab44a3e1e"/><file name="PrototypedArrayNode.php" hash="48d1ab9f9fffb5a61954c0eef074db24"/><file name="ReferenceDumper.php" hash="52e870bf26dfc67c5cc508f35728877d"/><file name="ScalarNode.php" hash="21117089ffade36c6d2ce368c7e1e68c"/><file name="VariableNode.php" hash="5850f75b01c198d39f42cafe8a83426b"/><dir name="Dumper"><file name="XmlReferenceDumper.php" hash="37c23341f4ceb50ff56536cea07d9a17"/><file name="YamlReferenceDumper.php" hash="a13510596355b645e4f282bf470f9cba"/></dir><dir name="Exception"><file name="DuplicateKeyException.php" hash="ede2ab4177afff995069bc54c4517f9e"/><file name="Exception.php" hash="663baaeb8e61e07fa5a9ad4274686d53"/><file name="ForbiddenOverwriteException.php" hash="e2a12d6760feb9f7c96d61e502f68b2c"/><file name="InvalidConfigurationException.php" hash="ca9a5001026ebe62aeb4a1c526a2c804"/><file name="InvalidDefinitionException.php" hash="aeb2ca3c7e035486a4ccebeac363125c"/><file name="InvalidTypeException.php" hash="4dc25832f90b656b88da8ac50789784a"/><file name="UnsetKeyException.php" hash="55c97aa4e81643f04c3abd943cc29a24"/></dir><dir name="Builder"><file name="ArrayNodeDefinition.php" hash="85ac902220bd4fd675fe3302f719552f"/><file name="BooleanNodeDefinition.php" hash="f695e1837c512ef8114328e660bf548b"/><file name="EnumNodeDefinition.php" hash="4f3de35c426e7ff68aaa84d15107e1cb"/><file name="ExprBuilder.php" hash="338e319efb0f1c03c50b79670993c34f"/><file name="FloatNodeDefinition.php" hash="ea6a82bed9a7bfe2f7c7e4bded4ba25e"/><file name="IntegerNodeDefinition.php" hash="0de24b6c3b0846189e0e7140340e4c20"/><file name="MergeBuilder.php" hash="b11f7c9b66d7b499362eec9cb4bbb1f4"/><file name="NodeBuilder.php" hash="7693aa48110f594cf10b5cff5961fe1c"/><file name="NodeDefinition.php" hash="1ca1b06e24561f52ee053674df3affa4"/><file name="NodeParentInterface.php" hash="8857cb48e2ba81f9ac87d906cdff6828"/><file name="NormalizationBuilder.php" hash="46bebb98028e9769c8cf3831ba00eac1"/><file name="NumericNodeDefinition.php" hash="5432ea41087e28803130a9cbe74e4356"/><file name="ParentNodeDefinitionInterface.php" hash="2116ee0288a4d682af361f2d472ec242"/><file name="ScalarNodeDefinition.php" hash="60cdafbd23a7cfe8082e9a05131ed580"/><file name="TreeBuilder.php" hash="48f136a2fe26ef3b84f2f4e785dafdca"/><file name="ValidationBuilder.php" hash="f3f979aa257bebf13b5eff13cec65f89"/><file name="VariableNodeDefinition.php" hash="72ec2bf4a8686d8ae753fe91f026b1a6"/></dir></dir><dir name="Exception"><file name="FileLoaderImportCircularReferenceException.php" hash="59c5c886c2d0230703a6a8ebc47541af"/><file name="FileLoaderLoadException.php" hash="7141ea173857ddeb85cc7b3e3e079777"/></dir><dir name="Util"><file name="XmlUtils.php" hash="213f3986995f3b18ffea4a478a5cfe89"/></dir></dir></dir></dir></dir></dir><dir name="monolog"><dir name="monolog"><file name="CHANGELOG.mdown" hash="76522b851d140d2c811023fe65e57099"/><file name="LICENSE" hash="6696b6aaf80dc85ab647edb991e340dd"/><file name="README.mdown" hash="39693884efa591571ff5b8cfd63ef9dd"/><file name="composer.json" hash="dd3f6e671b042b583fa0641675a26939"/><file name="phpunit.xml.dist" hash="95d6f5549715ccf35f15cbd77a62dcb5"/><dir name="src"><dir name="Monolog"><file name="ErrorHandler.php" hash="a9e1ab2f536a14228e203f4d68f6ba3b"/><file name="Logger.php" hash="6c7c20100835353aca3cb3bc91127e3e"/><file name="Registry.php" hash="b915ddf8f212103e9b9c6ddaa7549fda"/><dir name="Processor"><file name="GitProcessor.php" hash="34832c01dc9cc6500d9cbc0ac648c276"/><file name="IntrospectionProcessor.php" hash="ae13ae33d4ecfd019bd855a3202f7ae7"/><file name="MemoryPeakUsageProcessor.php" hash="2b0943e3e6780dfc2a1eab43abc40206"/><file name="MemoryProcessor.php" hash="c2a28cd63336a0414f6feb5600c8db52"/><file name="MemoryUsageProcessor.php" hash="6e403b927f8e0010cc107c50895a6cbe"/><file name="ProcessIdProcessor.php" hash="a8b0bbeab67f2bfcc0712d369357fefa"/><file name="PsrLogMessageProcessor.php" hash="2511e6abb86e0eee16edcf818fa68d57"/><file name="TagProcessor.php" hash="e952fcfce6adbb0ad7c77c0e2f2deeff"/><file name="UidProcessor.php" hash="ca2abfa26b23ca8d36fc617264d9c35b"/><file name="WebProcessor.php" hash="bbaa327b04a82135d5d93a5951e17fae"/></dir><dir name="Handler"><file name="AbstractHandler.php" hash="ef58ebfe96434d93ff4152662939652c"/><file name="AbstractProcessingHandler.php" hash="cfdd846fac8ce3cb15afe9188575ed37"/><file name="AbstractSyslogHandler.php" hash="551fa48711e5e1142432094b3af97727"/><file name="AmqpHandler.php" hash="5123da7e55282796202c2bc224815c93"/><file name="BrowserConsoleHandler.php" hash="2409793a4daf01d0cc02bd3d720cdf3e"/><file name="BufferHandler.php" hash="f6c37a9f3618fb4f32f572262c81d9ca"/><file name="ChromePHPHandler.php" hash="740eb4e04555b364356916c49e8e85d7"/><file name="CouchDBHandler.php" hash="d0457dc4ae523c5b1d6291ab46e4a62e"/><file name="CubeHandler.php" hash="b5efefbb19cff2b64a42e2c49966751f"/><file name="DoctrineCouchDBHandler.php" hash="abc48686f395a089e55a2ec1a4fe4b78"/><file name="DynamoDbHandler.php" hash="a7f97af3c1967d4ee7699059071681bd"/><file name="ElasticSearchHandler.php" hash="303b76d4f8d8f6f7a92150e83894d2f1"/><file name="ErrorLogHandler.php" hash="1854e5b1850705f60afdeb45cf80cd77"/><file name="FilterHandler.php" hash="883312f37345d1a10bd6dfc5210ed999"/><file name="FingersCrossedHandler.php" hash="d131115420ae585550713f0afd1d3828"/><file name="FirePHPHandler.php" hash="8b326519d23fccc55225f797f5f499fc"/><file name="FleepHookHandler.php" hash="5e872dfb71c9c5e3dd53ac0035893a31"/><file name="FlowdockHandler.php" hash="d4e47d3bebdf59f2116ce486dc4b280b"/><file name="GelfHandler.php" hash="8ce60b07bf9421a51b8b73f38e4940b4"/><file name="GroupHandler.php" hash="4bc9e4378c31a77b5e94e94b4b70ef9a"/><file name="HandlerInterface.php" hash="ea71b279940a8c6b3e8bec2f8ab73ab5"/><file name="HipChatHandler.php" hash="91b1aed3e93e7f0d3cee7832fffeed4d"/><file name="LogEntriesHandler.php" hash="4f41355fbf6aca980dc7def2da449a14"/><file name="LogglyHandler.php" hash="69b25647034ba63c310ed93a95d31b53"/><file name="MailHandler.php" hash="54cee36784ef08875244672c7002252c"/><file name="MandrillHandler.php" hash="f67a896079f3797689c9f4ffe2bb7523"/><file name="MissingExtensionException.php" hash="99ec7108652f07752a6e4585f781ee92"/><file name="MongoDBHandler.php" hash="2a8a13591a8be648d0558bbe942f85d8"/><file name="NativeMailerHandler.php" hash="6fdae5a11f32fc764fcffe120fe2b25a"/><file name="NewRelicHandler.php" hash="6ab594fba21db8bf6abe7148745ad857"/><file name="NullHandler.php" hash="d2f5ef3d84e4f42bcff3084a5d8fbb98"/><file name="PsrHandler.php" hash="541ce4f4b61a8531b8fdf5eaa0328fe2"/><file name="PushoverHandler.php" hash="f142d43a3e65fdc47936eef5cbbe3d49"/><file name="RavenHandler.php" hash="7616f2f039369fa0dbcefe69fa7db72a"/><file name="RedisHandler.php" hash="a72b7d5733c85cceb2d43be397e40066"/><file name="RollbarHandler.php" hash="f62a264801703287e2bb5840378935ff"/><file name="RotatingFileHandler.php" hash="b6a8420f71bfe03acac82f087faba424"/><file name="SamplingHandler.php" hash="85fc2f7a5cf4f34749aa70cbc8c732e6"/><file name="SlackHandler.php" hash="406d4ffad5834c13e5f7cad2015e8b9d"/><file name="SocketHandler.php" hash="ad245f0583e47beac39e08813f5e7522"/><file name="StreamHandler.php" hash="ba2ba87c33a856a17eb937308a3c28ae"/><file name="SwiftMailerHandler.php" hash="524a25645c5ff6636dbd98d4f411a78c"/><file name="SyslogHandler.php" hash="7a0bad8d1fb73a94adeb0d398eb42ad9"/><file name="SyslogUdpHandler.php" hash="a79df176420b580e148ccf49dfd3ce85"/><file name="TestHandler.php" hash="af915fa2a14a03fc3c0ec01af9782c86"/><file name="WhatFailureGroupHandler.php" hash="cc7c8c6047b554c24a682575a53aa4bc"/><file name="ZendMonitorHandler.php" hash="dc2ee6716c9dee2ef3d420c41ac0dc2b"/><dir name="FingersCrossed"><file name="ActivationStrategyInterface.php" hash="6bf84f27f4b7a0016afa63430cf6f8be"/><file name="ChannelLevelActivationStrategy.php" hash="6827ce52b4bc0d222300712248c1b40d"/><file name="ErrorLevelActivationStrategy.php" hash="f31a9ad59022efe0de63808d275a0031"/></dir><dir name="SyslogUdp"><file name="UdpSocket.php" hash="fa10242c08d290a25316a482674bdf13"/></dir></dir><dir name="Formatter"><file name="ChromePHPFormatter.php" hash="71556b69ade93eb7eb296611dcde581e"/><file name="ElasticaFormatter.php" hash="cdf84d2666304c10184eb4ee0787e4be"/><file name="FlowdockFormatter.php" hash="847fdcee07390783044ae1e4555f6b08"/><file name="FormatterInterface.php" hash="6393c1db9899b0f9e3fc4ad3d6a898dd"/><file name="GelfMessageFormatter.php" hash="d440fde52d75340eb1a307cba0970e64"/><file name="HtmlFormatter.php" hash="b8f7335803da9715cfc9284f87ddeccd"/><file name="JsonFormatter.php" hash="e95ef9e43b17778829fc6fbceb7600a2"/><file name="LineFormatter.php" hash="c26b11f2d1a19986eaa1c77ea6f7d7a4"/><file name="LogglyFormatter.php" hash="17c423e50573a684d3f51539d6f27558"/><file name="LogstashFormatter.php" hash="8b4098c5bc5d6f17140da077037ac586"/><file name="MongoDBFormatter.php" hash="c9de870b2087e9881756ccddcb751987"/><file name="NormalizerFormatter.php" hash="6d79517adaa0853f23e5677360996f5f"/><file name="ScalarFormatter.php" hash="9934bbe7fbf1a7536cbabf0bb31fac8b"/><file name="WildfireFormatter.php" hash="0a57bdcd42584e1b41e4e093631a22f6"/></dir></dir></dir></dir></dir><dir name="predis"><dir name="predis"><file name="CHANGELOG.md" hash="e0f3f8442d7797bd8c6fd986d0249faf"/><file name="CONTRIBUTING.md" hash="63afed85f6a698c677e46469c2cfe4bf"/><file name="FAQ.md" hash="9b21e1df8df17052f5519ae6fb5c1f81"/><file name="LICENSE" hash="00790a0fd679da49c34df6daa9a01326"/><file name="README.md" hash="c6dd8fc021471b29e6073a55e7d3ce3a"/><file name="VERSION" hash="ee7ab3e7e15d1e00ec001ca33b4571f1"/><file name="autoload.php" hash="ec13dd579498b74ec2b0cbfce29e3108"/><file name="composer.json" hash="7f11b65b9c704f61a41c2123267589c8"/><file name="package.ini" hash="913191d10484d4b47b9993d39d0dc0fd"/><dir name="bin"><file name="create-command-test" hash="75f60caeafbb8d5f6fa5a1f4f280da0b"/><file name="create-pear" hash="0e23094242ce1d97017c050a41573cdc"/><file name="create-phar" hash="bba61512813f4db0e75c9b7054216130"/><file name="create-single-file" hash="a55776966755e2030a0e124d81dd2b02"/></dir><dir name="src"><file name="Autoloader.php" hash="e6e3182087bdd190a5843964de22d2c0"/><file name="Client.php" hash="c3eab3e0ade4a70ac2103af55d8c624d"/><file name="ClientContextInterface.php" hash="5118459f72c01e24e3553091f1405a19"/><file name="ClientException.php" hash="7306d1c9747302f46d1104fedf2046c8"/><file name="ClientInterface.php" hash="468c404fadd5db679bb87543dc14f60c"/><file name="CommunicationException.php" hash="b4d3f6df7f982a71fa263c30f90a7373"/><file name="NotSupportedException.php" hash="b591f067ecec0ddbc6b2b55d831d61a5"/><file name="PredisException.php" hash="8bbe7436aca08886e38b61f9d731b7be"/><dir name="Protocol"><file name="ProtocolException.php" hash="f928033b8cc102e386dafaedc0ff2eb8"/><file name="ProtocolProcessorInterface.php" hash="8d598b765dd63c5d14c516a0b912d2f4"/><file name="RequestSerializerInterface.php" hash="60c71f3f64ec489d48a028db56290a5f"/><file name="ResponseReaderInterface.php" hash="b0d178451b77c5217fc9868df9584ccc"/><dir name="Text"><file name="CompositeProtocolProcessor.php" hash="24151fd2645a776e8da652f586210e6b"/><file name="ProtocolProcessor.php" hash="b6e8976fb17d1e0dbd8ec351ba3e1422"/><file name="RequestSerializer.php" hash="33e2583b66439af13321c19be1e2e497"/><file name="ResponseReader.php" hash="5612ca9b7d3331a06444f533bbde3e58"/><dir name="Handler"><file name="BulkResponse.php" hash="53711c0961a7d3f42028203fc3357228"/><file name="ErrorResponse.php" hash="1a035376927576a72bd34826a4c21d54"/><file name="IntegerResponse.php" hash="7b204ca6bd31aa6da5f886b3194b4c10"/><file name="MultiBulkResponse.php" hash="5a364cbbf4246daa49c5abb517ff7b6f"/><file name="ResponseHandlerInterface.php" hash="a5ef6aa03a0a650921ffa13cc7e11574"/><file name="StatusResponse.php" hash="f32260b486f5bb54c98d71822bf29e99"/><file name="StreamableMultiBulkResponse.php" hash="fc616aa2256905e2ddf70f1075ee3065"/></dir></dir></dir><dir name="Pipeline"><file name="Atomic.php" hash="109685b66fb7f6b312c275dc8a04a231"/><file name="ConnectionErrorProof.php" hash="3e2b697c2f7b0a2707d9438ea21d3d18"/><file name="FireAndForget.php" hash="4157723e3ace2b099c648441b09dcb20"/><file name="Pipeline.php" hash="31b7c0a88d8cb78783166e02f82b1c12"/></dir><dir name="Monitor"><file name="Consumer.php" hash="f4f049acbdda880fb412060c1e28215b"/></dir><dir name="Response"><file name="Error.php" hash="111ff4d86eec2aede68e09e5176a1306"/><file name="ErrorInterface.php" hash="6dd00e7efd24db4782c501bb10b2667f"/><file name="ResponseInterface.php" hash="edaa02c170a0ac9452a9a834b9961b89"/><file name="ServerException.php" hash="ec5de38d04237f875c52e6c54b1f6e28"/><file name="Status.php" hash="880f48b8086f90799350268a544bbcac"/><dir name="Iterator"><file name="MultiBulk.php" hash="f3a3337be69159b359b587a7c976da52"/><file name="MultiBulkIterator.php" hash="21bcb2fddadf756bc14d941d7ad12b05"/><file name="MultiBulkTuple.php" hash="2228556e650b5b055803fc9f39388746"/></dir></dir><dir name="Transaction"><file name="AbortedMultiExecException.php" hash="73d03109d5fb8b28c409c945cb52d014"/><file name="MultiExec.php" hash="d08d2cd2a63ca2877ec72bf681c403cd"/><file name="MultiExecState.php" hash="bf93def4173f4f940e7f5d20e5ddf683"/></dir><dir name="Collection"><dir name="Iterator"><file name="CursorBasedIterator.php" hash="84c679c0a965ca6e67bf423d2f0afc9e"/><file name="HashKey.php" hash="349fa0fbad2a676ee2d9af152e611b47"/><file name="Keyspace.php" hash="f9e63377440d2bf963c7822dae3c11fa"/><file name="ListKey.php" hash="39b1aa789607f6ebd8d8edc811ad46b0"/><file name="SetKey.php" hash="2a5aed95b475f26ea36089015a89e6f1"/><file name="SortedSetKey.php" hash="62bfc8611f1c14108d9700f12935fac9"/></dir></dir><dir name="Command"><file name="Command.php" hash="36c04408a6ad7ff1ac03915e5250d304"/><file name="CommandInterface.php" hash="75f7437242d0cfce8dd7855d1026b2e5"/><file name="ConnectionAuth.php" hash="08517fd3e2121879d2c843667279ae33"/><file name="ConnectionEcho.php" hash="4752a5d275d1ed1eec1d013ff457b823"/><file name="ConnectionPing.php" hash="cc427bc9616ea5208af35d09bf1cbd72"/><file name="ConnectionQuit.php" hash="958054f928c4f5395592b79d31c9c121"/><file name="ConnectionSelect.php" hash="bf1e46d6a2f8c61df6df1176acd8ea5c"/><file name="HashDelete.php" hash="94fdd8a0fd58f4c355fe78e32439cc1d"/><file name="HashExists.php" hash="89cd47bf201407832262d99f9be1f9f9"/><file name="HashGet.php" hash="d093194a31d966dfcd38426e1d25cef9"/><file name="HashGetAll.php" hash="0ea55178bf332cf398159cabacb035d9"/><file name="HashGetMultiple.php" hash="26b84784c98598e84268cd5d325f8247"/><file name="HashIncrementBy.php" hash="c251bca81f915dcbd99d0ef0554a28c2"/><file name="HashIncrementByFloat.php" hash="84425c9986b970cde42365fb1b365493"/><file name="HashKeys.php" hash="4532a52df08d04a15dffd8d6ac2cd8d0"/><file name="HashLength.php" hash="ab770395dcee099404e388505284eaa6"/><file name="HashScan.php" hash="7f4dd8a21d3a1cb154708e838cf26f27"/><file name="HashSet.php" hash="57bd67b8d057b8e746e6710478549fa0"/><file name="HashSetMultiple.php" hash="f3c0f91f6064781e205254f8f3b5eeef"/><file name="HashSetPreserve.php" hash="65827ba95c601d5b16fbe9bbaec6c98e"/><file name="HashValues.php" hash="05972c839788efe1c80fef568556faed"/><file name="HyperLogLogAdd.php" hash="7f8926288a1b00e3588c0ba88e5fbdbd"/><file name="HyperLogLogCount.php" hash="35e62fa06b9e3c9d6c67281f1b2931f4"/><file name="HyperLogLogMerge.php" hash="62e906afd5aee99ccb88800293adc93e"/><file name="KeyDelete.php" hash="3bbd86c22461540a4d1743b95f4b0e30"/><file name="KeyDump.php" hash="6f32fac9f16339704c627156c91c6d28"/><file name="KeyExists.php" hash="aa67eb4afe4bf63adeaeaeff6ad58b2e"/><file name="KeyExpire.php" hash="cc91358dd7450918209058567e9c8618"/><file name="KeyExpireAt.php" hash="a741dfc1042699904c301728f1942a6f"/><file name="KeyKeys.php" hash="2da6af98f57113258a332c7af54e95e0"/><file name="KeyMove.php" hash="0dbd96ef03de1d60d714aa6fa721ce08"/><file name="KeyPersist.php" hash="21421f138d246ce287f35305c2f5588d"/><file name="KeyPreciseExpire.php" hash="13297e46d987a669639b4b50f75d5cef"/><file name="KeyPreciseExpireAt.php" hash="9c8322af7b9db7a34e4cd671695688b3"/><file name="KeyPreciseTimeToLive.php" hash="b771fb924d71acf35a3d23c81bd10de6"/><file name="KeyRandom.php" hash="41f452b72762d01c1c802c56e2529834"/><file name="KeyRename.php" hash="e85ca5b20975c771ae54dde509228f20"/><file name="KeyRenamePreserve.php" hash="5ba7f6ea049c634b09b559b10fb3bc3d"/><file name="KeyRestore.php" hash="5d024818a31f197a957df9c0a90f1d2a"/><file name="KeyScan.php" hash="560e13389eab35ff9dd753b9f71673c5"/><file name="KeySort.php" hash="cbca68fde1074e9fc3888bd656b20e7e"/><file name="KeyTimeToLive.php" hash="3e7104cf23d47b699d9c744c3ab798e0"/><file name="KeyType.php" hash="2c440c356fae34d1456f7fb9eaa77e78"/><file name="ListIndex.php" hash="d0bab37da91b92270abd297a257c8170"/><file name="ListInsert.php" hash="bba6d07b995639add60df529232e7c41"/><file name="ListLength.php" hash="ca2e82acae9e6086e021ee9d53fc64d2"/><file name="ListPopFirst.php" hash="fdf59940b66b6e83892d10c06604d9fc"/><file name="ListPopFirstBlocking.php" hash="90bf43ad0b82b66a9129bb29cf3a19ab"/><file name="ListPopLast.php" hash="3cda34d82ed505056eeff92319bc0ac0"/><file name="ListPopLastBlocking.php" hash="855743043ca91abbcc11ab8366e330de"/><file name="ListPopLastPushHead.php" hash="8649ba8925e1e0e583a01150b61a0284"/><file name="ListPopLastPushHeadBlocking.php" hash="78d94e482fcaac133b432afd47f8732b"/><file name="ListPushHead.php" hash="eb841a8a7b17932882f7965be1f8f5ea"/><file name="ListPushHeadX.php" hash="22487066af26f0fb5e77f04c73c9ae1b"/><file name="ListPushTail.php" hash="46c96942381e3ace3c30130176131a9a"/><file name="ListPushTailX.php" hash="53bd734c34b4cde9382fb2e302f5ca5d"/><file name="ListRange.php" hash="0a8a73ab3b9d685a913362ed2f48a845"/><file name="ListRemove.php" hash="997f491049e36ae121782852a4212eaf"/><file name="ListSet.php" hash="89eaab7d92a72bc46b07aca89290971c"/><file name="ListTrim.php" hash="7408793d6adfeebf9a5086f432b10eb7"/><file name="PrefixableCommandInterface.php" hash="94bb1636edac0bbca6f49d01711b9833"/><file name="PubSubPublish.php" hash="b67074df2f3e02a70694c4f54a21992b"/><file name="PubSubPubsub.php" hash="41115321e077a510869c04efc3fcebee"/><file name="PubSubSubscribe.php" hash="ac2bc5ceb60b13024f291cf70d812a7d"/><file name="PubSubSubscribeByPattern.php" hash="1a0b13923d342450a0e6c6ef8751eab4"/><file name="PubSubUnsubscribe.php" hash="5bf2d358c4391f99fdb43b0c0abe3db8"/><file name="PubSubUnsubscribeByPattern.php" hash="e5b6351d45f3c30360be06a4e9c4abeb"/><file name="RawCommand.php" hash="0e128f458151ca6ed20a2b6501273479"/><file name="ScriptCommand.php" hash="a536013379d5b067857cc10f2ed999f3"/><file name="ServerBackgroundRewriteAOF.php" hash="23a399d0f9a5a7199910ae02147e3ac3"/><file name="ServerBackgroundSave.php" hash="d20c0cf4f24ff33a5d0cbdb277f179cc"/><file name="ServerClient.php" hash="5f7a1efe2cb7443a38caf9eb1c6a9aed"/><file name="ServerCommand.php" hash="1d48b5bdf0227a696d51fab6f77f6228"/><file name="ServerConfig.php" hash="c7e8219789ebe6e4d74d63f797e5a234"/><file name="ServerDatabaseSize.php" hash="7422d54bfffa92f79b5862bbfd8f0523"/><file name="ServerEval.php" hash="44f387be302b9a0994abfde3fd5c11db"/><file name="ServerEvalSHA.php" hash="9cf839765e4075503e94ed5780a51b38"/><file name="ServerFlushAll.php" hash="ec2a7565095623210596836a963aad0a"/><file name="ServerFlushDatabase.php" hash="efd97498c0c2b1fdf5a28cbd3b6119f2"/><file name="ServerInfo.php" hash="78f9fd0ef946566fa15ce620209f9b0f"/><file name="ServerInfoV26x.php" hash="a0319519359ca94da432446712724423"/><file name="ServerLastSave.php" hash="0ef27248f7f06ad4e2b78c4be8ab0604"/><file name="ServerMonitor.php" hash="9a60cd35955e8bf1fc2a13e4018e29a1"/><file name="ServerObject.php" hash="78ac6fb1f4e086d70d9fdab920885832"/><file name="ServerSave.php" hash="c1bf690511000e2c366b1244b73c36ad"/><file name="ServerScript.php" hash="c789d80ae13f01ca7610c06f6663a184"/><file name="ServerSentinel.php" hash="f0f16fc1ef9fb9c41393cdb51770a57a"/><file name="ServerShutdown.php" hash="bf1cd9adf6dfe3dffe6553e03c2557ae"/><file name="ServerSlaveOf.php" hash="d8c465a12693b5f4e516460d1a0629f5"/><file name="ServerSlowlog.php" hash="c2ee09a363f1500ff2b3c0fe1a32d833"/><file name="ServerTime.php" hash="c674d34f6a86a22aeecededd86b51985"/><file name="SetAdd.php" hash="f9306a746e9aa222850c16c7c8289ba4"/><file name="SetCardinality.php" hash="1ba3058bed4334c2e8f3984a4737bfd0"/><file name="SetDifference.php" hash="2820fedcb21e442b71f8d3db82d6754d"/><file name="SetDifferenceStore.php" hash="97fa668a5e500e3038984503cb7e3fac"/><file name="SetIntersection.php" hash="cbadd93e4d1324813de45ff134e3cb42"/><file name="SetIntersectionStore.php" hash="6ff76d5a3232385fbbfdfb68ec811055"/><file name="SetIsMember.php" hash="fe28bacd3aff8c63cb890811c4cf345c"/><file name="SetMembers.php" hash="bc857dc5f9af3b3eafcee7e5fb68a407"/><file name="SetMove.php" hash="fe0385feb0007cdbef65093f36ee4d83"/><file name="SetPop.php" hash="82c2a4a4d4317d9a3bd694ad8dfb4874"/><file name="SetRandomMember.php" hash="a173112e7e61ce6893f9be8037727639"/><file name="SetRemove.php" hash="8c97b139e83b1e0491b0350d768ed83a"/><file name="SetScan.php" hash="e44f8deb8769e35853354ac5ab9acfac"/><file name="SetUnion.php" hash="08517b88933ca20269bae7f5a42f5f79"/><file name="SetUnionStore.php" hash="d0e74181b099747c1199cee90621fbd7"/><file name="StringAppend.php" hash="3f0007b36691d5f7eaef39657e09609c"/><file name="StringBitCount.php" hash="753ced9226c0ab2bb2cf08b7bb05a807"/><file name="StringBitOp.php" hash="539f183f0adedbd12f19019ae238ff7a"/><file name="StringBitPos.php" hash="a12046384a9bcadaad73c081a6d69c7c"/><file name="StringDecrement.php" hash="6d9ebf85a13864821f9aa296fffb1e4a"/><file name="StringDecrementBy.php" hash="16a06cf187ecfd829be06c38fcced4d2"/><file name="StringGet.php" hash="67ca0e23568af6f4a3753bbf71dca16f"/><file name="StringGetBit.php" hash="57901f2146b1562c206aa20faa8f1de4"/><file name="StringGetMultiple.php" hash="eaa0c97d42d95fa01ba1b31792947311"/><file name="StringGetRange.php" hash="90ad8bddc7f9d8339b67cdc85ab974db"/><file name="StringGetSet.php" hash="041a263a21e822ed829ea5e19c41d8d8"/><file name="StringIncrement.php" hash="0834c77f6e0788f12b3f370f771e3db2"/><file name="StringIncrementBy.php" hash="b61c343123b36dc223c47a9b0f6ba4b8"/><file name="StringIncrementByFloat.php" hash="04b066fd187fa3d39dd42f9a43e487dd"/><file name="StringPreciseSetExpire.php" hash="b1736d59c570cb6cd09b2d8c3703ddbe"/><file name="StringSet.php" hash="ad0a98f1f38960a27806ee7f1f27a482"/><file name="StringSetBit.php" hash="ebe3ceeb79f32298d31e115bcdbb0c87"/><file name="StringSetExpire.php" hash="62b9d75cddc7a9895270ce91ff020f53"/><file name="StringSetMultiple.php" hash="fa89929ad970fa7b3d92fcf33744a502"/><file name="StringSetMultiplePreserve.php" hash="db3eeaa3414e04e36392da0171394826"/><file name="StringSetPreserve.php" hash="53aa3ca896f711c650a6c7ac2b62ec5f"/><file name="StringSetRange.php" hash="5344c6bbe502b4e92881f7a21ea88601"/><file name="StringStrlen.php" hash="f4669e56ac69323d5acf1fc8a32da3cc"/><file name="StringSubstr.php" hash="8a428107813844ce9c2e4deb6746e971"/><file name="TransactionDiscard.php" hash="2666f21f3486ec084dbb9d1115e9c2c3"/><file name="TransactionExec.php" hash="13063a29fbcddabcf85eb6df89062717"/><file name="TransactionMulti.php" hash="76dfbd460873e01b0ee6a9103190f96c"/><file name="TransactionUnwatch.php" hash="3501e23d12b538f930c9c8a3a7b32f1b"/><file name="TransactionWatch.php" hash="4b186a914c1a625c134c5a0f541733c5"/><file name="ZSetAdd.php" hash="e51a6a6d4c6a4f196df98f02a5dcdf9d"/><file name="ZSetCardinality.php" hash="d8591e63f60f00a5bacca2d4ae910cc7"/><file name="ZSetCount.php" hash="9266eeef4c8aaf035b626483e038f82f"/><file name="ZSetIncrementBy.php" hash="0c45314f0c317521be38e989544ff41f"/><file name="ZSetIntersectionStore.php" hash="16af8a1df3bc591ec06739cd1b9a5374"/><file name="ZSetLexCount.php" hash="8e67edaa817e448576c1a8becdc0daa5"/><file name="ZSetRange.php" hash="d11307b84258562aa3b524ba0f013e3b"/><file name="ZSetRangeByLex.php" hash="22fb06edd69c94fd46cca9b64923f456"/><file name="ZSetRangeByScore.php" hash="af260c4134921dbc873fc8274342c74a"/><file name="ZSetRank.php" hash="fbafab26943c01656f1392627bb9123e"/><file name="ZSetRemove.php" hash="96b4a1d71eb1a3fe784c3e80036803af"/><file name="ZSetRemoveRangeByLex.php" hash="503db12e935f574ec07785ca4fe4b181"/><file name="ZSetRemoveRangeByRank.php" hash="d877a99d4f0ec3109f5decdcd5c224f7"/><file name="ZSetRemoveRangeByScore.php" hash="cbc9adcf43862325dcf950fe446e9534"/><file name="ZSetReverseRange.php" hash="a98fa9863ffce97097a42235f5b942e2"/><file name="ZSetReverseRangeByScore.php" hash="fde347f4a9d0e246a82c64e5c9965d7b"/><file name="ZSetReverseRank.php" hash="d2f86e8e624a1f15f97b646fcc38d5b0"/><file name="ZSetScan.php" hash="1600101b73574d98d83ccdf2e16daaae"/><file name="ZSetScore.php" hash="73eefb85349ee0a8ba83e0f5ed1da32f"/><file name="ZSetUnionStore.php" hash="56294db0476d69e2549ff6f10a9d7180"/><dir name="Processor"><file name="KeyPrefixProcessor.php" hash="0ed53ddf5b51777120a47b34ed1cfa52"/><file name="ProcessorChain.php" hash="fff2a4379f8b1efdb940ab137f58230d"/><file name="ProcessorInterface.php" hash="72ffbd5ddd3607cb462b6b7fe78fc323"/></dir></dir><dir name="Session"><file name="Handler.php" hash="23f36a306c69b80b2f6da6ef9b2651ff"/></dir><dir name="Configuration"><file name="ClusterOption.php" hash="985af02a8b00b2bdf86997867135c4ae"/><file name="ConnectionFactoryOption.php" hash="695d55c91e09f5210f9f67c27270f288"/><file name="ExceptionsOption.php" hash="3fa433a7986267ab015e4d37b6ec71e2"/><file name="OptionInterface.php" hash="a5b188297dd585d77a9126b2077dc354"/><file name="Options.php" hash="2165639175238062432ecd11f2970803"/><file name="OptionsInterface.php" hash="713e47703da3ca5dce60817c4213e61d"/><file name="PrefixOption.php" hash="f09604a43da75966ef7f2e3c45db07e3"/><file name="ProfileOption.php" hash="4e059e29f4fd88bb3885c08bf5c0be2e"/><file name="ReplicationOption.php" hash="17457f1b288d58ac556a4c5275f91b95"/></dir><dir name="Cluster"><file name="ClusterStrategy.php" hash="279420f2a65eeb1ed2a1c981619f2ea9"/><file name="PredisStrategy.php" hash="06c6b779c001341c68ef58ce207ff7ab"/><file name="RedisStrategy.php" hash="808094b061d535244aaeb28994540f81"/><file name="StrategyInterface.php" hash="eafb846d76ecf1ed5551f91d2aa5d9d0"/><dir name="Hash"><file name="CRC16.php" hash="fcf4cebd3bab0be0e9b9e632a9e46af7"/><file name="HashGeneratorInterface.php" hash="3358952c27b3b2c7c427d43588805269"/></dir><dir name="Distributor"><file name="DistributorInterface.php" hash="ee012af49ef250b59de68318f796c4c0"/><file name="EmptyRingException.php" hash="ceb7146f6a3e7b7f253f0a2af088cd88"/><file name="HashRing.php" hash="1810893a93918dd307940fd7557853e2"/><file name="KetamaRing.php" hash="4d5b68f6105a060e3bc5d3368f3d1c5d"/></dir></dir><dir name="Replication"><file name="ReplicationStrategy.php" hash="3053ecc5e2e40319dda94fa012f480b1"/></dir><dir name="PubSub"><file name="AbstractConsumer.php" hash="5a1f75dccc025c49caa6da2a992c377b"/><file name="Consumer.php" hash="a0e8ec87bed962614dec0ae796c504ab"/><file name="DispatcherLoop.php" hash="33bb3fb17c1dd64a69a5cb540c3023ae"/></dir><dir name="Connection"><file name="AbstractConnection.php" hash="b8d58d15d47d9b8f58428185d0dd16ae"/><file name="AggregateConnectionInterface.php" hash="d470e4344624e522c7ef49b6fefeee8a"/><file name="CompositeConnectionInterface.php" hash="a7bf466a919874e5cba8c384c8203d69"/><file name="CompositeStreamConnection.php" hash="1f6242efa8f50863786d46ff0aef671e"/><file name="ConnectionException.php" hash="8e00da992cdc2545e475c67529347766"/><file name="ConnectionInterface.php" hash="6b868134c8f9103b8dd7ba5b2a4314f0"/><file name="Factory.php" hash="5320f4fc99b1cae6a44caa414e721ff0"/><file name="FactoryInterface.php" hash="66b29226692b1a01b6e8c5a8dd4b9cd8"/><file name="NodeConnectionInterface.php" hash="4bc78b4dcc26ef118c2258e4cd320a9a"/><file name="Parameters.php" hash="0b53f365a7726bfaebe82311d5d19c19"/><file name="ParametersInterface.php" hash="3bb1a3fb9cd8053a263ce4c477165faa"/><file name="PhpiredisSocketConnection.php" hash="fced1a025cfc8390a9827b6469929eb9"/><file name="PhpiredisStreamConnection.php" hash="4601fdcde27876205b1839269caca3c0"/><file name="StreamConnection.php" hash="3864a8d9be34eb5378480b150a8ff43a"/><file name="WebdisConnection.php" hash="32b133f4cf055edcf28f2cea43a44997"/><dir name="Aggregate"><file name="ClusterInterface.php" hash="2e1c30fc20f14637b1a149a0b59bf1ad"/><file name="MasterSlaveReplication.php" hash="04a553406de92c0d9f032ccc45dcb9a6"/><file name="PredisCluster.php" hash="1430178bba546bf128088cbbe40a38fe"/><file name="RedisCluster.php" hash="b7843a36ad645642a8ff33564778500a"/><file name="ReplicationInterface.php" hash="085fd6ff8b71bf6e81a416382df04246"/></dir></dir><dir name="Profile"><file name="Factory.php" hash="416824387d6f5e1c8ff67e157387fc6f"/><file name="ProfileInterface.php" hash="bcf10be15f1fc6e86d537eb5290e61ab"/><file name="RedisProfile.php" hash="21293f767ee93954555e20881e43fdb9"/><file name="RedisUnstable.php" hash="73e03a96b5cba038a1af89e31d9ddc7b"/><file name="RedisVersion200.php" hash="11b57845a83381b8a4b9680873468cbd"/><file name="RedisVersion220.php" hash="2d7db9a4ae9111bae9efff07d22772a4"/><file name="RedisVersion240.php" hash="d742915f67a5f71d7d09d632bcea13ea"/><file name="RedisVersion260.php" hash="8bbb19cc115ede79db07283f475d3998"/><file name="RedisVersion280.php" hash="155cd06e7d1ef6e77714c5247e332664"/><file name="RedisVersion300.php" hash="a8a7564ed89b10306e48721df979ef14"/></dir></dir></dir></dir><dir name="pimple"><dir name="pimple"><file name="CHANGELOG" hash="e8b356d91a25a6df0f864f3e65fa3a32"/><file name="LICENSE" hash="8938635ab76e9450ef35e27a403f4dd8"/><file name="README.rst" hash="d9e669798984b5d7ee8826e97cf72cfe"/><file name="composer.json" hash="c9a44b4d06e4f3b03a70cdf0ac22e686"/><file name="phpunit.xml.dist" hash="1e1be301b5f9bebf522cad3000f5798f"/><dir name="ext"><dir name="pimple"><file name="README.md" hash="322b465f9f62e4a3b2a00692f036d8ba"/><file name="config.m4" hash="e909b17186c90f31d1d6b9ce598ce286"/><file name="config.w32" hash="5b49e8709c8d5e8957b599db0e728b73"/><file name="php_pimple.h" hash="95a4a9ecab8178dbf944c83913878c24"/><file name="pimple.c" hash="5edf1a65952e5c148332ad36650ebb66"/><file name="pimple_compat.h" hash="726240296bf6b4781095d427d7519fcb"/></dir></dir><dir name="src"><dir name="Pimple"><file name="Container.php" hash="d431824e2742395ae4d5099a680ecd9b"/><file name="ServiceProviderInterface.php" hash="18486f1b6cde60410f53c9be072360db"/><dir name="Tests"><file name="PimpleServiceProviderInterfaceTest.php" hash="7231dc11b0ce05f35d7d6a1a67ad93eb"/><file name="PimpleTest.php" hash="155e3384d39d5df9c6f3e66acd9b67c7"/><dir name="Fixtures"><file name="Invokable.php" hash="901d2a4b096aac148b52a416ddf99d7a"/><file name="NonInvokable.php" hash="e16d69d7de4cf1dd7fdcfe777ac865fc"/><file name="PimpleServiceProvider.php" hash="0252d01b5ab3b0f274f419d1ec54ce3a"/><file name="Service.php" hash="23e9ac8bc2ea1dc68ad0f793a87f22b7"/></dir></dir></dir></dir></dir></dir><dir name="psr"><dir name="log"><file name="LICENSE" hash="1a74629072fd794937be394ab689327e"/><file name="README.md" hash="144a71a4e1f9c67ac79751acc37614c4"/><file name="composer.json" hash="6e872afc69e782d4a56d2d7094bb24b8"/><dir name="Psr"><dir name="Log"><file name="AbstractLogger.php" hash="26eb607e5318188016615326bd89a9be"/><file name="InvalidArgumentException.php" hash="7d2f0bd1583524d739fff12f0507de65"/><file name="LogLevel.php" hash="cc226142fd5d390d030b39c61cf97843"/><file name="LoggerAwareInterface.php" hash="cfac6d4dc3ebf2c7f0e49f74d1bcd44a"/><file name="LoggerAwareTrait.php" hash="221f47ac7d3da4800d2c0e26cdfb351b"/><file name="LoggerInterface.php" hash="1ae09682227159416a299d0ea940d34e"/><file name="LoggerTrait.php" hash="d1152080b1b7a8812f6a3023b63f0fc0"/><file name="NullLogger.php" hash="d66f51c1fc729b09e54fd8821c7dfe46"/><dir name="Test"><file name="LoggerInterfaceTest.php" hash="660a7ddd367dbf434c5ec6e463149d42"/></dir></dir></dir></dir></dir><dir name="composer"><file name="ClassLoader.php" hash="9c1e7fe1a9eb1693e07ee4420ca5361e"/><file name="LICENSE" hash="084a034acbad39464e3df608c6dc064f"/><file name="autoload_classmap.php" hash="c5951e03ad25fb6cb31ccc9d4dd55abd"/><file name="autoload_namespaces.php" hash="7357a769234df682726c665bcad4d93b"/><file name="autoload_psr4.php" hash="22cbc192e641aaa2ba978ad1337ffd85"/><file name="autoload_real.php" hash="3e6473c7f70efa5d4aaa5c71bffde8c8"/><file name="installed.json" hash="29df5fe7ef15ba8d77700e2e91b59bd7"/></dir><dir name="expressly"><dir name="php-common"><file name="LICENSE" hash="3b8024defbc61154507b15999bd0554b"/><file name="README.md" hash="f3c32c2563af07c909ce314441202971"/><file name="composer.json" hash="0b7278d27a1cf4f9fc743592ac0bbbb0"/><file name="composer.lock" hash="634643dfe9c9b78e59522815aa341396"/><file name="phpunit.xml" hash="0ef64d17d42b3b1c349fee57675262bb"/><dir name="bootstrap"><file name="bootstrap.php" hash="8e99870d29a297071ed080f41b70a43d"/><file name="config.php" hash="c4a4bb2509218567344041974d6daab7"/><file name="services.php" hash="9bbe2b804963e2262012eb5360310163"/></dir><dir name="src"><file name="Client.php" hash="b254f47d7960106a63d81b5928e5d895"/><dir name="Route"><file name="AbstractRoute.php" hash="258e4e16a704b3d2a81796b3ff5d2c66"/><file name="BatchCustomer.php" hash="ed2d036b7e04cb700c4ce98ffe25327e"/><file name="BatchInvoice.php" hash="e0322710f72f508dbad1a58edac15b0a"/><file name="CampaignMigration.php" hash="eeb14e485c47e3b3ba3ae49b73063bbb"/><file name="CampaignPopup.php" hash="1d3c4c6ff3ba1ebb02856b4a60f82b7d"/><file name="Ping.php" hash="9e287092328f3e9c131fe6af9496305e"/><file name="Registered.php" hash="013c35903987e933b1496cbfc7a840bc"/><file name="RouteInterface.php" hash="b11e3f26ea38a9e699ced525f86276d5"/><file name="UserData.php" hash="afe9cb2414a206eb433dd1496cfbcddc"/></dir><dir name="Resources"><dir name="config"><file name="config.yml" hash="deb4d32828f248c97bf716d4d2f90f90"/></dir></dir><dir name="Exception"><file name="ExceptionFormatter.php" hash="e900009a15c889cc01340c88b1059b11"/><file name="GenericException.php" hash="f4a36e72e97d063e962846731c545536"/><file name="InvalidAPIKeyException.php" hash="755576bfe01491ceb6e5d9cd73aaa4a2"/><file name="InvalidURIException.php" hash="fadac9d938301a13ecabad10a042ccb6"/><file name="UnauthorizedException.php" hash="ea7659f8f0c1beff4cb0e24c04304996"/><file name="UserExistsException.php" hash="29ebc89a51bc3b496e86ea9a8613ea2f"/></dir><dir name="Resolver"><file name="ResolverInterface.php" hash="508c9ac60b3405113b07b0e613f3c77f"/><file name="RouteResolver.php" hash="f19f0697a0fc3c2f8de4cc9d3d2389b4"/></dir><dir name="Validator"><file name="EmailValidator.php" hash="2e92f2605f75cfad8f05b228e882bf0e"/><file name="UuidValidator.php" hash="8f624bc422089020b4a2242a6378921a"/><file name="ValidatorInterface.php" hash="266959a22cbdb4d5d0fa76635783d1c8"/></dir><dir name="Logger"><file name="DummyLogger.php" hash="c73e4702fd3395f36aa642f66683891b"/></dir><dir name="Subscriber"><file name="BannerSubscriber.php" hash="4d18e05a2fae5a1f4ea2f462c872cc06"/><file name="CustomerMigrationSubscriber.php" hash="79f08f7db5d27be24762893bb99fd91a"/><file name="MerchantSubscriber.php" hash="57bc38d7924dff3ab8a1bf85f34e1c50"/><file name="UtilitySubscriber.php" hash="b71a45cdfca7c53e01b3a193d705c4a1"/></dir><dir name="Provider"><file name="ConfigProviderInterface.php" hash="542c532c3e1e4c5753a3359d7f456043"/><file name="CountryCodeProvider.php" hash="25ea99296aa8ddf93e3c07d6d680637d"/><file name="ExternalRouteProvider.php" hash="4ec982a8b3bee60f0a8532d9e44525ab"/><file name="MerchantProviderInterface.php" hash="a92bc08e723c31a5f3e42e4dd533e0f5"/><file name="MockMerchantProvider.php" hash="05e27f6bb874c613167570976157bf6b"/></dir><dir name="Presenter"><file name="BatchCustomerPresenter.php" hash="b60fdcac45993181f8596f40696d1309"/><file name="BatchInvoicePresenter.php" hash="6fe9c52fb9e9c6b84ac7ae863cab4a77"/><file name="CustomerMigratePresenter.php" hash="72a084c6888fb19ac1bd2fd00e9c0251"/><file name="PingPresenter.php" hash="19244e3fa434b052da02c87895296c27"/><file name="PresenterInterface.php" hash="33fc09dbb8374b4d059605e656171809"/><file name="RegisteredPresenter.php" hash="0869458216644c00fa7a12bd0a2f0dce"/></dir><dir name="ServiceProvider"><file name="CountryCodeServiceProvider.php" hash="d0f30dd04da142443c8a55e4cfdea409"/><file name="DispatcherServiceProvider.php" hash="eba6f43c1888a1f607d6b706c80ed663"/><file name="ExternalRouteServiceProvider.php" hash="690c9fe21b90ff99287b527b81c095fd"/><file name="MerchantServiceProvider.php" hash="626cffff2c99972cc4798d3d97009e63"/><file name="MonologServiceProvider.php" hash="5038b76a49c796df97449eec2ea3651a"/><file name="RouteResolverServiceProvider.php" hash="01c0ef389fc28d1d2cb3e34364b01148"/><file name="ValidatorServiceProvider.php" hash="82fdd0abcdea24caffcdf0944ea7d8ba"/><file name="YamlConfigServiceProvider.php" hash="3a99d5d9c65617b705d32323151130fd"/></dir><dir name="Entity"><file name="Address.php" hash="ce294c0fd1aa8d179c0529354585838d"/><file name="ArraySerializeable.php" hash="7fd82cafe5fb71b46ec8f95bf794b0d3"/><file name="Customer.php" hash="20477bc0c5d534da2ed0bb694f8a8742"/><file name="Email.php" hash="c390e4057bd98fcacb16bd495375f3a7"/><file name="ExternalRoute.php" hash="f1c322a90ce31db338895a1440fa1a77"/><file name="Generic.php" hash="17c3add57d278696beb012c1247a473b"/><file name="Invoice.php" hash="6cfb906e6bddcf4e400b130dc9831ce4"/><file name="Merchant.php" hash="8ef97e8ce4d4a3fd6af1c1188fdfaa9d"/><file name="MerchantType.php" hash="613aa62038eca2ae6c1c72d413ea3a79"/><file name="Meta.php" hash="10e34d69c567e86072f5303520c08b04"/><file name="Order.php" hash="312e3e8e16e1f5c5c36dd830dad0cec2"/><file name="Phone.php" hash="635d655545f4706d91d982c32cc3ac47"/><file name="Route.php" hash="c2c13becfabe72306db7424840d5648d"/><file name="Social.php" hash="f082f38e0e42306a53bcb28a85bf15cb"/></dir><dir name="Helper"><file name="BannerHelper.php" hash="222e5ddcc72f4cdd36bb77608644a01f"/></dir><dir name="Event"><file name="BannerEvent.php" hash="ea8b68d405c27428f89aa04a38a6104d"/><file name="CustomerMigrateEvent.php" hash="d457166caaa39996f7060e2649c5ef52"/><file name="MerchantEvent.php" hash="57681ea6ffd24b04ee9cabf9428d5b4c"/><file name="PasswordedEvent.php" hash="b31925d5c4f78aab73b48ba98fb5caeb"/><file name="ResponseEvent.php" hash="3fb37fb70871eb335b6cbe590ee33c0e"/></dir></dir></dir></dir><dir name="doctrine"><dir name="collections"><file name="LICENSE" hash="2e75234cfca1e55b1cdce86615dccac9"/><file name="README.md" hash="ff4bde3b2aca7391a4d137fb3723b3bc"/><file name="composer.json" hash="42578bea0e5b42d99f1bb518f58d2e17"/><file name="phpunit.xml.dist" hash="7272ca3f60e392de99fbbbdde54b0f85"/><dir name="lib"><dir name="Doctrine"><dir name="Common"><dir name="Collections"><file name="AbstractLazyCollection.php" hash="0cdd57b872a93b2628928faed9613852"/><file name="ArrayCollection.php" hash="09b2d66c94acc690ee4fc11af85b6e60"/><file name="Collection.php" hash="438d252027560da34a7c9c00630c78b4"/><file name="Criteria.php" hash="7562502458e4882ac010f4855e835112"/><file name="ExpressionBuilder.php" hash="24c848da9c5b947a185bcb863a776438"/><file name="Selectable.php" hash="0022f3302c581784e9cb641244c95b37"/><dir name="Expr"><file name="ClosureExpressionVisitor.php" hash="9c0dfd3cedcf4650b29bb5751e9e8ff0"/><file name="Comparison.php" hash="237dfe5b538a02ee2da863bf98175dbb"/><file name="CompositeExpression.php" hash="576184196f87b460e50e0067c4b9b843"/><file name="Expression.php" hash="b395e08d82471a666b302a29f876d8d2"/><file name="ExpressionVisitor.php" hash="84ed446e7e02dec468b579eecd524693"/><file name="Value.php" hash="9a49bc999242d878a94027b82192889b"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="f32fc08e2eb65bc817f9535948d5da6c"/><file name="system.xml" hash="b7796664433404e6e36699044d6e8d9d"/></dir><dir name="sql"><dir name="expressly_expressly_setup"><file name="mysql4-install-0.1.0.php" hash="df0e8df2fc4e3ab3db5c8c4b193d1fa6"/><file name="upgrade-0.1.0-0.3.0.php" hash="c46aa5a3fad7a30b78d80df9a81697fc"/></dir></dir><dir name="Helper"><file name="Client.php" hash="6329a34a196282b9d4de4e9c697e7477"/><file name="Data.php" hash="de0f52bb051aa83aedf275220b10fcd1"/></dir><dir name="lib"><file name="MerchantProvider.php" hash="2647ecce84f33e3d65e8211bad6392ba"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Expressly_Expressly.xml" hash="2aaae4aef7c0b67f750c5133f716fb18"/></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="expressly.xml" hash="f78c53eb774a181b42013a501b77598e"/></dir></dir></dir></dir></dir></dir></target></contents></package>
1
  <?xml version="1.0"?>
2
+ <package><name>Expressly</name><version>2.5.0</version><stability>stable</stability><license>MIT</license><channel>community</channel><extends></extends><summary>Expressly is a customer referral network that allows merchants to find partner merchants and launch customer acquisition campaigns to their respective audiences. Full instructions, and registration at www.buyexpressly.com</summary><description>Expressly is a customer referral network where merchants connect with each other to acquire customers and drive sales. On the Expressly Network, you can find the perfect match with a non-competing (usually complementary) merchant. If the connection is then accepted, you will be able to acquire new customers and drive your sales up. Thanks to our unique customer journey, customers won't have to register to your site again, removing unnecessary friction. We are able to migrate their data, saving them time and delivering to you a real customer with one click. This will amazingly increase your conversions rates at a surprisingly cheap cost. Full instructions and registration at www.buyexpressly.com</description><notes>https://github.com/expressly/magento/releases</notes><authors><author><name>Expressly</name><user>Expressly</user><email>info@expressly.com</email></author></authors><date>2016-12-05</date><time>15:52:52</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><file name="LICENSE" hash="2a627f33b90e562d84e2882c37c18aa6"/><dir name="app"><dir name="code"><dir name="community"><dir name="Expressly"><dir name="Expressly"><file name="composer.json" hash="f18fdb358a656dc735b3ca6792009461"/><file name="composer.lock" hash="a9defe5777a0d39cf65a27560c4dfb04"/><dir name="Block"><file name="Banner.php" hash="7154e48a71bb942754ae6eff668c38c0"/><file name="Popup.php" hash="095679e404486fffb5f401d658b4be2e"/><dir name="System"><dir name="Config"><dir name="Form"><file name="ImageUrl.php" hash="bd72e6997b9334857442113912766ec0"/><file name="Register.php" hash="fef0737ed8f02a3dc16c81c7c5f1d8cd"/></dir></dir></dir></dir><dir name="Model"><file name="Observer.php" hash="1f3d7b34d719a103d5e6db1ccd506c9d"/><dir name="Resource"><file name="Setup.php" hash="d3a39e96deb9351a8aa63efa480fca3a"/></dir></dir><dir name="controllers"><file name="AbstractController.php" hash="1520e6c089e3697c9719be178eede9ae"/><file name="BatchController.php" hash="def13a6874deaee80628b79abebb1074"/><file name="CustomerController.php" hash="898c37101586c62886a5ec7f5b9a7e61"/><file name="UtilityController.php" hash="a99a0e4bc8e81643a6a063a81ebbf655"/></dir><dir name="vendor"><file name="autoload.php" hash="54bf53ebefdd54e5bf7e1652c4589bdc"/><dir name="kriswallsmith"><dir name="buzz"><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="1cd15dd0ede3985fdb0c92e1b5bf6849"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/><dir name="Form"><file name="FormRequest.php" hash="0e7fa3557c44a99b3254541b23132994"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir></dir><dir name="Client"><file name="AbstractClient.php" hash="bd63f448d7f7a56e0efb4482c472f67e"/><file name="AbstractCurl.php" hash="85f6d37d542b8562d50f5fb6c1366b1b"/><file name="AbstractStream.php" hash="bde9a74a53db1f84f9cdaacc00eb3cae"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="7229d3f714a11bdbbde12c8a167d131a"/><file name="FileGetContents.php" hash="f0931e8dd1e460e81c79004a4ef4a07d"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir></dir></dir><dir name="symfony"><dir name="debug"><dir name="Symfony"><dir name="Component"><dir name="Debug"><file name="CHANGELOG.md" hash="a358a6f8744e03930d1c28580263cdd8"/><file name="Debug.php" hash="cd788b7a81c5b491f9649cf750770196"/><file name="DebugClassLoader.php" hash="517eb50b9896e9bd91a077de927934c6"/><file name="ErrorHandler.php" hash="bd1c0f1cfb3f94ac5ed9ba7709d57ae9"/><file name="ExceptionHandler.php" hash="023f914b9083a5b6cf8e185b0ab8ba53"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="c51c77c10d4f9e42c79cdbd94600cdef"/><file name="composer.json" hash="6781b755060a3c71f38e0181b863bacb"/><file name="phpunit.xml.dist" hash="08aefd4577d081d880e951a43e818ac2"/><dir name="Resources"><dir name="ext"><file name="README.rst" hash="3a073493d13544dd25f1c73765c148f5"/><file name="config.m4" hash="2f36d0e51121313a69833ff5f1216618"/><file name="config.w32" hash="6f6a05fe8d0c4d68ad20277676882d5c"/><file name="php_symfony_debug.h" hash="3209be2f8c9a8b2c635fc7ea263b57f2"/><file name="symfony_debug.c" hash="ff9e019c5f5f1ad1daee96cbdfd558c7"/><dir name="tests"><file name="001.phpt" hash="167030a520a11d6c60aeea3bead13884"/></dir></dir></dir><dir name="Exception"><file name="ClassNotFoundException.php" hash="59a3503e9bd79a8b76ae37c211797803"/><file name="ContextErrorException.php" hash="9c3d7d991e4f241db9c9bfc690f25290"/><file name="DummyException.php" hash="3174476dfa007d8cdbfe4800a134ebe0"/><file name="FatalBaseException.php" hash="97d8d45fa98bbfdb07ee31f63e82b401"/><file name="FatalErrorException.php" hash="3a64d3b8ce0dd1deb78cd251bac952ab"/><file name="FlattenException.php" hash="889ba604e1612133e5cab02e910d72fe"/><file name="OutOfMemoryException.php" hash="4313b0aca7604ae9662028ddf4fb738b"/><file name="UndefinedFunctionException.php" hash="a86b159939b91aa3bc307442ecbdec2c"/><file name="UndefinedMethodException.php" hash="efd25669d2202ead3db13ad55874db67"/></dir><dir name="FatalErrorHandler"><file name="ClassNotFoundFatalErrorHandler.php" hash="d7c83ada98b868b2bf5d41a26bb20ac8"/><file name="FatalErrorHandlerInterface.php" hash="129494cd2b2ad50cc3d6514da02dcce6"/><file name="UndefinedFunctionFatalErrorHandler.php" hash="bb4e5ecc07982760c1f1b29b199fc348"/><file name="UndefinedMethodFatalErrorHandler.php" hash="2c76ec3df935f312a8afd825c93faab7"/></dir></dir></dir></dir></dir><dir name="filesystem"><file name="CHANGELOG.md" hash="e4cb8b1514c6138f5e09aa0d1f74c5e1"/><file name="Filesystem.php" hash="8c28be380af78885a2461b2df6b60673"/><file name="LICENSE" hash="b4e1c29292cf1d95350bbe72f30d6825"/><file name="LockHandler.php" hash="04cb0e05a01ace88e64139f44188791a"/><file name="README.md" hash="39f5ff23d8316ece715014a760793117"/><file name="composer.json" hash="6fdcef26148676a6b2c6ec98ace3eb4f"/><file name="phpunit.xml.dist" hash="8a5e5a3ec9a19dfb71ca77b5da6bc76d"/><dir name="Exception"><file name="ExceptionInterface.php" hash="34db82450fb4585dc0062b887e162936"/><file name="FileNotFoundException.php" hash="5b777960995ad86b080c4bcd4fb2bca2"/><file name="IOException.php" hash="1bf882a413ec45ec59da4cf55c8afcd0"/><file name="IOExceptionInterface.php" hash="600e02292dadf55b8735ef5c818ddeed"/></dir></dir><dir name="http-foundation"><dir name="Symfony"><dir name="Component"><dir name="HttpFoundation"><file name="AcceptHeader.php" hash="2c2a2e96f15c38396572d8872cce87f7"/><file name="AcceptHeaderItem.php" hash="5e6b4270fd130be21f73259e46000381"/><file name="ApacheRequest.php" hash="428aaf05f7b32d9b5b0f21b5ff926bf0"/><file name="BinaryFileResponse.php" hash="be7627d7462520bbae03206a5cb97744"/><file name="CHANGELOG.md" hash="f659307b596519c51d204dce53b4f233"/><file name="Cookie.php" hash="90b8c19331f74246c3972ff3a6d35856"/><file name="ExpressionRequestMatcher.php" hash="bb322f1b660d8526d54738c96bcc9496"/><file name="FileBag.php" hash="0da2b6f20ac9bd59879e555fee7f4374"/><file name="HeaderBag.php" hash="e83ec85868157644d66e28585b982823"/><file name="IpUtils.php" hash="b375880700f83b741964f82f4f27e797"/><file name="JsonResponse.php" hash="eea78bbbf379200ff16980c88fd3f217"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="ParameterBag.php" hash="7966dfb3c917d10d1088a258a1e0bd3c"/><file name="README.md" hash="c439eb808e6c558555b0b3171f3ed158"/><file name="RedirectResponse.php" hash="1efb3ee54b879e5bc6e6dcd1b806777b"/><file name="Request.php" hash="65cc7bdfc393dcf4244d48ba94028690"/><file name="RequestMatcher.php" hash="2e388cf8d4bcff9b7e066fbccd2f92eb"/><file name="RequestMatcherInterface.php" hash="f088ae827db024f229a6bcd1f44da7ee"/><file name="RequestStack.php" hash="6635bfddbb6f820300e90351ca7f1592"/><file name="Response.php" hash="2076d61d389465d849697bab4317b6ce"/><file name="ResponseHeaderBag.php" hash="862c68bee3f94bc5fb3a9f14c0faf19f"/><file name="ServerBag.php" hash="8fd39b59ed0860b866cb4650fd9fb0bc"/><file name="StreamedResponse.php" hash="e6231e50ce0f49905b39feeeb7202bd6"/><file name="composer.json" hash="5201c8baddc67095812680a458ffa1bc"/><file name="phpunit.xml.dist" hash="c1bc5f03f30c944fd2ae98a4d8b0c7fe"/><dir name="Resources"><dir name="stubs"><file name="SessionHandlerInterface.php" hash="e4be5b7296a343d87234186ac29d5fba"/></dir></dir><dir name="Session"><file name="Session.php" hash="b25cb46112eac2e01f6d48a0c89c4716"/><file name="SessionBagInterface.php" hash="80889e7aa69a1c2bedcf649cae06c42d"/><file name="SessionInterface.php" hash="ef5a2def9e8823f848210338bea83df8"/><dir name="Attribute"><file name="AttributeBag.php" hash="056c87cb2711ca9728f6b80ca87e72e7"/><file name="AttributeBagInterface.php" hash="bb5d0a3c10afbf4a0eca346589214dea"/><file name="NamespacedAttributeBag.php" hash="d60132f62cb38954b83ca724ecc9e044"/></dir><dir name="Flash"><file name="AutoExpireFlashBag.php" hash="b58dd34144fe94305e3c76b418ad2045"/><file name="FlashBag.php" hash="03f3a009de01012a2d3579d63f5f183f"/><file name="FlashBagInterface.php" hash="9b5c9c155cafb9552dc5ce50efcf5e68"/></dir><dir name="Storage"><file name="MetadataBag.php" hash="30c7bb7b760747cdbf05bfc71dc3fec8"/><file name="MockArraySessionStorage.php" hash="a9a99d9b0d7376355cd205a7465670f7"/><file name="MockFileSessionStorage.php" hash="9afc135a2b2bf2d3020cc4bd9884743b"/><file name="NativeSessionStorage.php" hash="d374a5f695bdae9f3c5ada3cdf0cd06e"/><file name="PhpBridgeSessionStorage.php" hash="ca1002d127638aa520e5d1ae025aee11"/><file name="SessionStorageInterface.php" hash="1f44c7ddf2ad5aa6bdd2662a8b5936c2"/><dir name="Proxy"><file name="AbstractProxy.php" hash="edd427e88b5eccbcd11f61911d2314bf"/><file name="NativeProxy.php" hash="b6d244a2c8ac4258fd6ba058b6e73590"/><file name="SessionHandlerProxy.php" hash="4ad8174e61231a9d6cde25cdfe8ad6cf"/></dir><dir name="Handler"><file name="LegacyPdoSessionHandler.php" hash="c75543926d9cde85460afe55da6a9207"/><file name="MemcacheSessionHandler.php" hash="d10a2f87c6fc7996d9111e93ffdd82ba"/><file name="MemcachedSessionHandler.php" hash="4a6eb5465e0c7ccf2cfafa5f3b0e7874"/><file name="MongoDbSessionHandler.php" hash="3dd6282031cfd961589cbdc306b6e381"/><file name="NativeFileSessionHandler.php" hash="fe93aa5204757c30501b59d3ab98550b"/><file name="NativeSessionHandler.php" hash="3b84434b81084819ebfd2a994bd6f7b0"/><file name="NullSessionHandler.php" hash="f5a66096e4e7ada546f558221d1f6159"/><file name="PdoSessionHandler.php" hash="45498fbe94b82fd4e64cfb9a70b9a8aa"/><file name="WriteCheckSessionHandler.php" hash="49bc59ca9ebe5b6fbf9a4aae279fe76e"/></dir></dir></dir><dir name="File"><file name="File.php" hash="ea256b7cb4cb6d077967f51003bae39a"/><file name="UploadedFile.php" hash="6ec04eb871dafb7dccb9364da0ae340b"/><dir name="Exception"><file name="AccessDeniedException.php" hash="f857d7f53c52b92f5b86304b3380b099"/><file name="FileException.php" hash="33ff8592de1c97382cbf3264f5f3dfc9"/><file name="FileNotFoundException.php" hash="4a66cf7eaf34a81103d4b9c1f91723cb"/><file name="UnexpectedTypeException.php" hash="098936dfa215052c68b1002c28d276f4"/><file name="UploadException.php" hash="cac23f7007e150884750f7ebe5142326"/></dir><dir name="MimeType"><file name="ExtensionGuesser.php" hash="1dab816faf22ccdafb8fce27f999a279"/><file name="ExtensionGuesserInterface.php" hash="220e6e6ef231841ac1ee6378475b20f9"/><file name="FileBinaryMimeTypeGuesser.php" hash="f62592b21c4ec902a1692e7c2f78c0eb"/><file name="FileinfoMimeTypeGuesser.php" hash="4067410e9471075b49d4d47d3ab38420"/><file name="MimeTypeExtensionGuesser.php" hash="588e676696a46c221969b25f98298223"/><file name="MimeTypeGuesser.php" hash="9e72a2d6bc9b74185f5810e5a0fd39d1"/><file name="MimeTypeGuesserInterface.php" hash="2426b7805c551adb7193d3514d013b7a"/></dir></dir></dir></dir></dir></dir><dir name="monolog-bridge"><dir name="Symfony"><dir name="Bridge"><dir name="Monolog"><file name="CHANGELOG.md" hash="094d6ae95193dc93574972855a7d4832"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="Logger.php" hash="27c5f10435a78e290ec8ac3cfc248318"/><file name="README.md" hash="6ed8293be5da72ba7c55961f646c4fd8"/><file name="composer.json" hash="65c151dab71c7917546af9ce2dc17642"/><file name="phpunit.xml.dist" hash="fdf89201b4cf373b7a34e2c47857fa95"/><dir name="Processor"><file name="WebProcessor.php" hash="67e3137264fa8b61731c759134d0b8b7"/></dir><dir name="Handler"><file name="ChromePhpHandler.php" hash="802bc632e18f892ac6149df81b785064"/><file name="ConsoleHandler.php" hash="71bc89a0d486b815c92a6552599e9652"/><file name="DebugHandler.php" hash="450ee4aa4f8ff115dc3299b5dcdb52d2"/><file name="FirePHPHandler.php" hash="7fc6f9e4753cf67533a0ca3ca0615508"/><file name="SwiftMailerHandler.php" hash="65d9b7f8bd3838197c58f97476af73a8"/><dir name="FingersCrossed"><file name="NotFoundActivationStrategy.php" hash="1e0758ae14cad212d3c83378934145d6"/></dir></dir><dir name="Formatter"><file name="ConsoleFormatter.php" hash="770271a4d444a5edd938fde8d3329f95"/></dir></dir></dir></dir></dir><dir name="yaml"><dir name="Symfony"><dir name="Component"><dir name="Yaml"><file name="CHANGELOG.md" hash="00392ab3e6199c8363f9e53646f7da22"/><file name="Dumper.php" hash="da5f26a9f132aa1c83996767cde64e5c"/><file name="Escaper.php" hash="dcf2150e3154d37a4db78a43ddd09cd7"/><file name="Inline.php" hash="543e0ba6bb305c57edcf69134e0bf3e0"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="Parser.php" hash="ca5e576d27cdccf20c4fea75864c5c5d"/><file name="README.md" hash="323b328917558713567b091575524ec8"/><file name="Unescaper.php" hash="b60938a84538e8ee3937031ba5dec981"/><file name="Yaml.php" hash="900b9ca2478ff2e09f0de764d2a1933d"/><file name="composer.json" hash="2bb96d42e9a1251fc0025a9c1add90d4"/><file name="phpunit.xml.dist" hash="ce48037a1863cbad107ffc4e754bb8a8"/><dir name="Exception"><file name="DumpException.php" hash="40b05314535a494039c342a01e1d10d2"/><file name="ExceptionInterface.php" hash="a7ee6ec67e04faa2c2c29fef8adfc4fa"/><file name="ParseException.php" hash="08d1c10098a76595c49c58a3319327db"/><file name="RuntimeException.php" hash="39bbaf9ae8b207093e4b8a9c09cdb081"/></dir></dir></dir></dir></dir><dir name="event-dispatcher"><dir name="Symfony"><dir name="Component"><dir name="EventDispatcher"><file name="CHANGELOG.md" hash="745dd467bb8d944ee82b38034a3b71d2"/><file name="ContainerAwareEventDispatcher.php" hash="0bcadf91749e82c0e6f3ad64c89be078"/><file name="Event.php" hash="ec4077bd7b6bf237bec7136cbef589e0"/><file name="EventDispatcher.php" hash="726413ae13dfec061f23b8fff4235d25"/><file name="EventDispatcherInterface.php" hash="571cc8d5ac702f06eacaa849e3774226"/><file name="EventSubscriberInterface.php" hash="c14793051c0916ae555a170db42d635c"/><file name="GenericEvent.php" hash="57592b7539db9e18dc64528de170050a"/><file name="ImmutableEventDispatcher.php" hash="2aa90b7e3856053d0d6100d6e13832f8"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="ce7f9b787b9c507c07d1e6e36254a7e7"/><file name="composer.json" hash="f2ff5d79977cd6bc0d3b60cf1b1894bf"/><file name="phpunit.xml.dist" hash="80e32ada6de2dd8b634ed666650fc87e"/><dir name="DependencyInjection"><file name="RegisterListenersPass.php" hash="737fe94715322e3c7d2b1a06da312f3f"/></dir><dir name="Debug"><file name="TraceableEventDispatcher.php" hash="c4e84cc92b835e7acc5d4a5df9b25aef"/><file name="TraceableEventDispatcherInterface.php" hash="aa09cc5a555cfad4239045906e2850b0"/><file name="WrappedListener.php" hash="b25eea7b4663606e7ee568151f63f246"/></dir></dir></dir></dir></dir><dir name="http-kernel"><dir name="Symfony"><dir name="Component"><dir name="HttpKernel"><file name="CHANGELOG.md" hash="64f70457111c73b63dd9948808523f36"/><file name="Client.php" hash="1767d59347710d07aa85811e785ae917"/><file name="HttpKernel.php" hash="0d0fc44918e53b10a1450950acee6d45"/><file name="HttpKernelInterface.php" hash="a2515758373d2ce4bc2ebad993a8efb3"/><file name="Kernel.php" hash="b508c04e3530968c61200137125373c9"/><file name="KernelEvents.php" hash="59f3519d5ccc1d82941951871dd6762a"/><file name="KernelInterface.php" hash="f972f1e1b9787a093c8b233f8c62572d"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="777d542c9079db92db6e4b2f8f2e6db6"/><file name="TerminableInterface.php" hash="63651d1c2efa91187e171c23fa108bcc"/><file name="UriSigner.php" hash="ea7ab50104ed2996b8103081a1badb59"/><file name="composer.json" hash="26388afd7074e741d02a9265a1222df0"/><file name="phpunit.xml.dist" hash="8d819f3309f0cab142bee84a1530f4cc"/><dir name="CacheClearer"><file name="CacheClearerInterface.php" hash="1ab9fcfe250122ae01956d7d1df16c01"/><file name="ChainCacheClearer.php" hash="669169b998719a6ab22a69a976066631"/></dir><dir name="Controller"><file name="ControllerReference.php" hash="e0d2a33d75d4fec72e8525f4cd097046"/><file name="ControllerResolver.php" hash="40a908fbee757a40f34618774cccdd98"/><file name="ControllerResolverInterface.php" hash="743a4faee533d426fe09db12e53501ab"/><file name="TraceableControllerResolver.php" hash="25b16c005e61a48d621c219456d553bc"/></dir><dir name="Fragment"><file name="AbstractSurrogateFragmentRenderer.php" hash="c93ab30351de872e7cdf0eb33044d7d2"/><file name="EsiFragmentRenderer.php" hash="7358b48c1106ba54d9d1213d1de9e8e9"/><file name="FragmentHandler.php" hash="8cb81a2cba4f308f00a5374595d9ce88"/><file name="FragmentRendererInterface.php" hash="91f6b0f5da5a6e3bf2d9d7466ea8a08a"/><file name="HIncludeFragmentRenderer.php" hash="232e3f1f87eb370ba181bc55425515f7"/><file name="InlineFragmentRenderer.php" hash="c4114dd052bce3c8c9ea57439f0b77c2"/><file name="RoutableFragmentRenderer.php" hash="0071fc47cfd246fe3b8a143dd4beaa10"/><file name="SsiFragmentRenderer.php" hash="71383b6093ca7f08bf119f8c86026c06"/></dir><dir name="DependencyInjection"><file name="AddClassesToCachePass.php" hash="deb0d0189428240a5d06c02b24caa68f"/><file name="ConfigurableExtension.php" hash="9b2af751ef894bbb7f86fa7d763821c3"/><file name="ContainerAwareHttpKernel.php" hash="12960ef346b18a127742a5cda62960ac"/><file name="Extension.php" hash="da97a0908acb2f0576a735ee424f424d"/><file name="MergeExtensionConfigurationPass.php" hash="aef8eb59f79f4881d9f63e831c3c8546"/><file name="RegisterListenersPass.php" hash="ac6bbd18966411904d49cf73be6cb880"/></dir><dir name="Exception"><file name="AccessDeniedHttpException.php" hash="f5c23e90811d0ca9f89f959a44df67a6"/><file name="BadRequestHttpException.php" hash="2a8d0dab1cc3317b047c56e9911b3528"/><file name="ConflictHttpException.php" hash="94b6830863787a794c90b7facfd6c8bd"/><file name="FatalErrorException.php" hash="7bb1593fe84d0d2b573b72c008c0dbb8"/><file name="FlattenException.php" hash="cfea9542318121dddfa26dba9d1b106b"/><file name="GoneHttpException.php" hash="9db86cc7d9bcd454f26eeac90f7c3505"/><file name="HttpException.php" hash="dff8d6e0c64447e27bc68937a77dddd4"/><file name="HttpExceptionInterface.php" hash="69cdccd7a9953e3751614a3a6277f5c1"/><file name="LengthRequiredHttpException.php" hash="3bd9b015b4ba0740ab41737d32032f14"/><file name="MethodNotAllowedHttpException.php" hash="a42c8480c4d9ad8d17d1a1c881c744b2"/><file name="NotAcceptableHttpException.php" hash="0de9678a06efa1aca487531aa98d7a8d"/><file name="NotFoundHttpException.php" hash="42ccbf295404774e0d52f34f74647c08"/><file name="PreconditionFailedHttpException.php" hash="ea3b4923f43317aa2d4df9e213c2acfc"/><file name="PreconditionRequiredHttpException.php" hash="29194a8089afacd4f8727052cf682234"/><file name="ServiceUnavailableHttpException.php" hash="db013650b3f4ee5c7c94a28956df8293"/><file name="TooManyRequestsHttpException.php" hash="0186da1457636a79428955bf3c0f1dd6"/><file name="UnauthorizedHttpException.php" hash="21bac18e9a6d51f11d7c630c825274f7"/><file name="UnprocessableEntityHttpException.php" hash="c07cbc4e862a2682d90c55075dee5fbc"/><file name="UnsupportedMediaTypeHttpException.php" hash="c03b7cd458a039387516e00e15a1657d"/></dir><dir name="EventListener"><file name="AddRequestFormatsListener.php" hash="982f6c8f9187397e6721fe33434a20a4"/><file name="DebugHandlersListener.php" hash="570da49455180f7ed1873bab53d7e14c"/><file name="DumpListener.php" hash="d12b376ad61a8ec55589bb1b9b4d91df"/><file name="ErrorsLoggerListener.php" hash="742c8b2acd219dc07e9fc3aa174f5abc"/><file name="EsiListener.php" hash="e5f5c2978d7a4dc651a6df5562b35816"/><file name="ExceptionListener.php" hash="642035fd6c9bc10b630c7ec32a0aa303"/><file name="FragmentListener.php" hash="49601202d7bd0fc5cae7ed83cb4e38dd"/><file name="LocaleListener.php" hash="b300d4915a4478d77599e2cc5899f553"/><file name="ProfilerListener.php" hash="681dd51adeaa98a167c6d6aac6512410"/><file name="ResponseListener.php" hash="9f012c160c2b78e89e457aed4c054cf0"/><file name="RouterListener.php" hash="f6adb08ab4c8ac467942c9323926307d"/><file name="SaveSessionListener.php" hash="b9ee738b82076cbe2b63e31ff9ab4095"/><file name="SessionListener.php" hash="e31eeb0ff113b983758c287ff1209a03"/><file name="StreamedResponseListener.php" hash="57b574b30b287bfbe406beba0769749b"/><file name="SurrogateListener.php" hash="97e34c631aef5efd6c5f386c9af71e7d"/><file name="TestSessionListener.php" hash="6ef130519ea535d8c0c36bb765e41a63"/><file name="TranslatorListener.php" hash="c04748aa73262f5a4800657ce5068a82"/></dir><dir name="HttpCache"><file name="Esi.php" hash="361f545bc8d1b662127083c7e3fec8ed"/><file name="EsiResponseCacheStrategy.php" hash="184676d1492718f06f8decd542bfd344"/><file name="EsiResponseCacheStrategyInterface.php" hash="7b6e19350122f44a50ab1c2cab09f729"/><file name="HttpCache.php" hash="81c9f3269d45d1c0c506b9e8b3bfed81"/><file name="ResponseCacheStrategy.php" hash="c9ee85d0a70acb171355e0b354d52cae"/><file name="ResponseCacheStrategyInterface.php" hash="1b0fc56b2a99d7ec0c1635684034fdfd"/><file name="Ssi.php" hash="5c2f513f82cfc1911d2e43d684650c2d"/><file name="Store.php" hash="6f45f65fd9c47f69dc206a844eabdf76"/><file name="StoreInterface.php" hash="6833d375de947233ef2706a6238a4c1e"/><file name="SurrogateInterface.php" hash="aa6deb0aaf61ff02b1d2be4dd8b8560a"/></dir><dir name="Bundle"><file name="Bundle.php" hash="955b5995942fcb044d8dbcc4faa9da23"/><file name="BundleInterface.php" hash="eced991d4b8fe038cf5a39d571e03389"/></dir><dir name="Profiler"><file name="BaseMemcacheProfilerStorage.php" hash="ea8be899fd23132963a5186c4d28c4cd"/><file name="FileProfilerStorage.php" hash="0fbf5d9ce3622610288ba569f5561199"/><file name="MemcacheProfilerStorage.php" hash="8020b07be324fd98b1a7eb99a66800df"/><file name="MemcachedProfilerStorage.php" hash="e2a55bf9bbcdfcfa998c6e9d5a9b4c37"/><file name="MongoDbProfilerStorage.php" hash="88da73c581749c40b6959c2272829a0c"/><file name="MysqlProfilerStorage.php" hash="40a6f005bc2651c959cd6c7e4c4e6fe7"/><file name="PdoProfilerStorage.php" hash="86ca5374070e8d9932f937ef5db04443"/><file name="Profile.php" hash="0be27aed1ea1e68b0ee6d1a6f98f27d1"/><file name="Profiler.php" hash="6b8efd715e55b8dab765334c7db4d542"/><file name="ProfilerStorageInterface.php" hash="54e128308fa77bc58caa221ecec06849"/><file name="RedisProfilerStorage.php" hash="d035413059f96912e413667138224646"/><file name="SqliteProfilerStorage.php" hash="b69028b6ff27fff88714b26e65d6d6cf"/></dir><dir name="Debug"><file name="ErrorHandler.php" hash="ab27b3a991a404a9f83ad33c137ddc64"/><file name="ExceptionHandler.php" hash="abd0e561ece8935db9925995726a9c3a"/><file name="TraceableEventDispatcher.php" hash="c119b6767f174cf74f0836236acd6b46"/></dir><dir name="DataCollector"><file name="ConfigDataCollector.php" hash="64e5901ca6f117ba42ed516f3a3be935"/><file name="DataCollector.php" hash="fffc62a17a6e04d2fe2513765986c989"/><file name="DataCollectorInterface.php" hash="ffd4ec58caeabebaab60382110104899"/><file name="DumpDataCollector.php" hash="6a1404dcff8fc6e68f176a2bb36688d1"/><file name="EventDataCollector.php" hash="3bc713326c25951469bb7370f3190ca1"/><file name="ExceptionDataCollector.php" hash="6d802ac641d1127dd8dfe1fedcf2ac3e"/><file name="LateDataCollectorInterface.php" hash="3cbcfac5aa0d0d92b5ffe9bfbdb4379d"/><file name="LoggerDataCollector.php" hash="92cf3502d49f0d6a184fe6516fd2e73d"/><file name="MemoryDataCollector.php" hash="7829c43d15e1fbbaf8073929ec6fcb72"/><file name="RequestDataCollector.php" hash="d1547d4fdb4c1e959e9d2561924638a8"/><file name="RouterDataCollector.php" hash="b4b2d1de5a23fc8497f2157a574a99ec"/><file name="TimeDataCollector.php" hash="0ff1c49363748058ab7d80a482f4f715"/><dir name="Util"><file name="ValueExporter.php" hash="cc2a3a0e170095a5916b12ad1dfd28ea"/></dir></dir><dir name="CacheWarmer"><file name="CacheWarmer.php" hash="7435d5f981a3db589251151722cebbf0"/><file name="CacheWarmerAggregate.php" hash="6d276fc13becdbd2b5d48fc3148a23d8"/><file name="CacheWarmerInterface.php" hash="c128c3b99e2fa824c07c04c25f88d4e4"/><file name="WarmableInterface.php" hash="d0ccc4f26ea62bd6a3d1c528664b49b5"/></dir><dir name="Config"><file name="EnvParametersResource.php" hash="7e3653168bc3226d8f794795e9117ba4"/><file name="FileLocator.php" hash="359205d8174282bfb5b97f0a018e9e78"/></dir><dir name="Event"><file name="FilterControllerEvent.php" hash="7395234944fb9d41740f90342a2e1223"/><file name="FilterResponseEvent.php" hash="968dd6a4de0885c0f1d33beead597ff5"/><file name="FinishRequestEvent.php" hash="aae774c8c1c640f429459d3800a02806"/><file name="GetResponseEvent.php" hash="775cdb03532229d6174aa802d57dff42"/><file name="GetResponseForControllerResultEvent.php" hash="3c859e636dd03dbffff73b2aad547a3a"/><file name="GetResponseForExceptionEvent.php" hash="6dc97440900238f81b7c5f1f6104cb68"/><file name="KernelEvent.php" hash="631733a6e41e58d8ab1128df33a0bee5"/><file name="PostResponseEvent.php" hash="8c361b4ea8d7123572a8df3ec171c0ab"/></dir><dir name="Log"><file name="DebugLoggerInterface.php" hash="f4d0021f6fc5f6916f6b799bf89c2657"/><file name="LoggerInterface.php" hash="3868efe0c395e3f8272ae0e5c633e976"/><file name="NullLogger.php" hash="bd06d8cf784dfbc64b581a1f4ccd0bcf"/></dir></dir></dir></dir></dir><dir name="config"><dir name="Symfony"><dir name="Component"><dir name="Config"><file name="CHANGELOG.md" hash="2e855ecea3b2fd176fcde9dcbee078b4"/><file name="ConfigCache.php" hash="42fe66cd64cd32ea55cefd056c7a1b67"/><file name="FileLocator.php" hash="026635098bb87b0f3d9aa9db277372ea"/><file name="FileLocatorInterface.php" hash="19f6ce347d97710e6e204f6072080d7f"/><file name="LICENSE" hash="56dedd4bd25ecd034ac4e1c17ebba0cc"/><file name="README.md" hash="af54897b0accbcf3a8b4cb928ae315df"/><file name="composer.json" hash="15b5397737babc3051928cc11f2a9205"/><file name="phpunit.xml.dist" hash="2c94ed9c9ab9748fa3e87ebea246eff4"/><dir name="Loader"><file name="DelegatingLoader.php" hash="55f0bb12cab11e866f3b8dc990acfe44"/><file name="FileLoader.php" hash="ba9b0b86d956b8d0508702da64bae50d"/><file name="Loader.php" hash="ee72e1f5134967e385909103288f1f28"/><file name="LoaderInterface.php" hash="186d2f94152a27ccec52ef09dee3ff5b"/><file name="LoaderResolver.php" hash="fa0e5cf636fcb699349bc383ac1c58e4"/><file name="LoaderResolverInterface.php" hash="b5b88cd457cd2722513763f34d91181f"/></dir><dir name="Resource"><file name="DirectoryResource.php" hash="0dd51e1fce277a9dac05d77eb98553dc"/><file name="FileResource.php" hash="2ad38ca3a131d8ca2b81b7df2d048e44"/><file name="ResourceInterface.php" hash="8f062b489e002da9b8c9fedde7686f53"/></dir><dir name="Definition"><file name="ArrayNode.php" hash="621802994afbf85c05dd1a2290ec2eed"/><file name="BaseNode.php" hash="4e1c72481d5d85f9347494885976831a"/><file name="BooleanNode.php" hash="b90e36133771d6308a12b493bda51f9b"/><file name="ConfigurationInterface.php" hash="2715dbdacacd877e377fbdbd4ad1ec90"/><file name="EnumNode.php" hash="4718c796e11ef0403e41dce26b7224ea"/><file name="FloatNode.php" hash="ce9677559c3fdeaa47f5445752c0386b"/><file name="IntegerNode.php" hash="03a546fe92c089fec0fd60c2b07e4597"/><file name="NodeInterface.php" hash="6f9786dc687247c82fe66f20030d3045"/><file name="NumericNode.php" hash="75d9c7fc5aa9188383c41a3b9db09ba9"/><file name="Processor.php" hash="4d853174c3a8b201b3684fd8cdc5b768"/><file name="PrototypeNodeInterface.php" hash="ef44def01e8a4abfa4eaabdab44a3e1e"/><file name="PrototypedArrayNode.php" hash="48d1ab9f9fffb5a61954c0eef074db24"/><file name="ReferenceDumper.php" hash="52e870bf26dfc67c5cc508f35728877d"/><file name="ScalarNode.php" hash="21117089ffade36c6d2ce368c7e1e68c"/><file name="VariableNode.php" hash="5850f75b01c198d39f42cafe8a83426b"/><dir name="Dumper"><file name="XmlReferenceDumper.php" hash="37c23341f4ceb50ff56536cea07d9a17"/><file name="YamlReferenceDumper.php" hash="a13510596355b645e4f282bf470f9cba"/></dir><dir name="Exception"><file name="DuplicateKeyException.php" hash="ede2ab4177afff995069bc54c4517f9e"/><file name="Exception.php" hash="663baaeb8e61e07fa5a9ad4274686d53"/><file name="ForbiddenOverwriteException.php" hash="e2a12d6760feb9f7c96d61e502f68b2c"/><file name="InvalidConfigurationException.php" hash="ca9a5001026ebe62aeb4a1c526a2c804"/><file name="InvalidDefinitionException.php" hash="aeb2ca3c7e035486a4ccebeac363125c"/><file name="InvalidTypeException.php" hash="4dc25832f90b656b88da8ac50789784a"/><file name="UnsetKeyException.php" hash="55c97aa4e81643f04c3abd943cc29a24"/></dir><dir name="Builder"><file name="ArrayNodeDefinition.php" hash="85ac902220bd4fd675fe3302f719552f"/><file name="BooleanNodeDefinition.php" hash="f695e1837c512ef8114328e660bf548b"/><file name="EnumNodeDefinition.php" hash="4f3de35c426e7ff68aaa84d15107e1cb"/><file name="ExprBuilder.php" hash="338e319efb0f1c03c50b79670993c34f"/><file name="FloatNodeDefinition.php" hash="ea6a82bed9a7bfe2f7c7e4bded4ba25e"/><file name="IntegerNodeDefinition.php" hash="0de24b6c3b0846189e0e7140340e4c20"/><file name="MergeBuilder.php" hash="b11f7c9b66d7b499362eec9cb4bbb1f4"/><file name="NodeBuilder.php" hash="7693aa48110f594cf10b5cff5961fe1c"/><file name="NodeDefinition.php" hash="1ca1b06e24561f52ee053674df3affa4"/><file name="NodeParentInterface.php" hash="8857cb48e2ba81f9ac87d906cdff6828"/><file name="NormalizationBuilder.php" hash="46bebb98028e9769c8cf3831ba00eac1"/><file name="NumericNodeDefinition.php" hash="5432ea41087e28803130a9cbe74e4356"/><file name="ParentNodeDefinitionInterface.php" hash="2116ee0288a4d682af361f2d472ec242"/><file name="ScalarNodeDefinition.php" hash="60cdafbd23a7cfe8082e9a05131ed580"/><file name="TreeBuilder.php" hash="48f136a2fe26ef3b84f2f4e785dafdca"/><file name="ValidationBuilder.php" hash="f3f979aa257bebf13b5eff13cec65f89"/><file name="VariableNodeDefinition.php" hash="72ec2bf4a8686d8ae753fe91f026b1a6"/></dir></dir><dir name="Exception"><file name="FileLoaderImportCircularReferenceException.php" hash="59c5c886c2d0230703a6a8ebc47541af"/><file name="FileLoaderLoadException.php" hash="7141ea173857ddeb85cc7b3e3e079777"/></dir><dir name="Util"><file name="XmlUtils.php" hash="213f3986995f3b18ffea4a478a5cfe89"/></dir></dir></dir></dir></dir></dir><dir name="monolog"><dir name="monolog"><file name="CHANGELOG.mdown" hash="76522b851d140d2c811023fe65e57099"/><file name="LICENSE" hash="6696b6aaf80dc85ab647edb991e340dd"/><file name="README.mdown" hash="39693884efa591571ff5b8cfd63ef9dd"/><file name="composer.json" hash="dd3f6e671b042b583fa0641675a26939"/><file name="phpunit.xml.dist" hash="95d6f5549715ccf35f15cbd77a62dcb5"/><dir name="src"><dir name="Monolog"><file name="ErrorHandler.php" hash="a9e1ab2f536a14228e203f4d68f6ba3b"/><file name="Logger.php" hash="6c7c20100835353aca3cb3bc91127e3e"/><file name="Registry.php" hash="b915ddf8f212103e9b9c6ddaa7549fda"/><dir name="Processor"><file name="GitProcessor.php" hash="34832c01dc9cc6500d9cbc0ac648c276"/><file name="IntrospectionProcessor.php" hash="ae13ae33d4ecfd019bd855a3202f7ae7"/><file name="MemoryPeakUsageProcessor.php" hash="2b0943e3e6780dfc2a1eab43abc40206"/><file name="MemoryProcessor.php" hash="c2a28cd63336a0414f6feb5600c8db52"/><file name="MemoryUsageProcessor.php" hash="6e403b927f8e0010cc107c50895a6cbe"/><file name="ProcessIdProcessor.php" hash="a8b0bbeab67f2bfcc0712d369357fefa"/><file name="PsrLogMessageProcessor.php" hash="2511e6abb86e0eee16edcf818fa68d57"/><file name="TagProcessor.php" hash="e952fcfce6adbb0ad7c77c0e2f2deeff"/><file name="UidProcessor.php" hash="ca2abfa26b23ca8d36fc617264d9c35b"/><file name="WebProcessor.php" hash="bbaa327b04a82135d5d93a5951e17fae"/></dir><dir name="Handler"><file name="AbstractHandler.php" hash="ef58ebfe96434d93ff4152662939652c"/><file name="AbstractProcessingHandler.php" hash="cfdd846fac8ce3cb15afe9188575ed37"/><file name="AbstractSyslogHandler.php" hash="551fa48711e5e1142432094b3af97727"/><file name="AmqpHandler.php" hash="5123da7e55282796202c2bc224815c93"/><file name="BrowserConsoleHandler.php" hash="2409793a4daf01d0cc02bd3d720cdf3e"/><file name="BufferHandler.php" hash="f6c37a9f3618fb4f32f572262c81d9ca"/><file name="ChromePHPHandler.php" hash="740eb4e04555b364356916c49e8e85d7"/><file name="CouchDBHandler.php" hash="d0457dc4ae523c5b1d6291ab46e4a62e"/><file name="CubeHandler.php" hash="b5efefbb19cff2b64a42e2c49966751f"/><file name="DoctrineCouchDBHandler.php" hash="abc48686f395a089e55a2ec1a4fe4b78"/><file name="DynamoDbHandler.php" hash="a7f97af3c1967d4ee7699059071681bd"/><file name="ElasticSearchHandler.php" hash="303b76d4f8d8f6f7a92150e83894d2f1"/><file name="ErrorLogHandler.php" hash="1854e5b1850705f60afdeb45cf80cd77"/><file name="FilterHandler.php" hash="883312f37345d1a10bd6dfc5210ed999"/><file name="FingersCrossedHandler.php" hash="d131115420ae585550713f0afd1d3828"/><file name="FirePHPHandler.php" hash="8b326519d23fccc55225f797f5f499fc"/><file name="FleepHookHandler.php" hash="5e872dfb71c9c5e3dd53ac0035893a31"/><file name="FlowdockHandler.php" hash="d4e47d3bebdf59f2116ce486dc4b280b"/><file name="GelfHandler.php" hash="8ce60b07bf9421a51b8b73f38e4940b4"/><file name="GroupHandler.php" hash="4bc9e4378c31a77b5e94e94b4b70ef9a"/><file name="HandlerInterface.php" hash="ea71b279940a8c6b3e8bec2f8ab73ab5"/><file name="HipChatHandler.php" hash="91b1aed3e93e7f0d3cee7832fffeed4d"/><file name="LogEntriesHandler.php" hash="4f41355fbf6aca980dc7def2da449a14"/><file name="LogglyHandler.php" hash="69b25647034ba63c310ed93a95d31b53"/><file name="MailHandler.php" hash="54cee36784ef08875244672c7002252c"/><file name="MandrillHandler.php" hash="f67a896079f3797689c9f4ffe2bb7523"/><file name="MissingExtensionException.php" hash="99ec7108652f07752a6e4585f781ee92"/><file name="MongoDBHandler.php" hash="2a8a13591a8be648d0558bbe942f85d8"/><file name="NativeMailerHandler.php" hash="6fdae5a11f32fc764fcffe120fe2b25a"/><file name="NewRelicHandler.php" hash="6ab594fba21db8bf6abe7148745ad857"/><file name="NullHandler.php" hash="d2f5ef3d84e4f42bcff3084a5d8fbb98"/><file name="PsrHandler.php" hash="541ce4f4b61a8531b8fdf5eaa0328fe2"/><file name="PushoverHandler.php" hash="f142d43a3e65fdc47936eef5cbbe3d49"/><file name="RavenHandler.php" hash="7616f2f039369fa0dbcefe69fa7db72a"/><file name="RedisHandler.php" hash="a72b7d5733c85cceb2d43be397e40066"/><file name="RollbarHandler.php" hash="f62a264801703287e2bb5840378935ff"/><file name="RotatingFileHandler.php" hash="b6a8420f71bfe03acac82f087faba424"/><file name="SamplingHandler.php" hash="85fc2f7a5cf4f34749aa70cbc8c732e6"/><file name="SlackHandler.php" hash="406d4ffad5834c13e5f7cad2015e8b9d"/><file name="SocketHandler.php" hash="ad245f0583e47beac39e08813f5e7522"/><file name="StreamHandler.php" hash="ba2ba87c33a856a17eb937308a3c28ae"/><file name="SwiftMailerHandler.php" hash="524a25645c5ff6636dbd98d4f411a78c"/><file name="SyslogHandler.php" hash="7a0bad8d1fb73a94adeb0d398eb42ad9"/><file name="SyslogUdpHandler.php" hash="a79df176420b580e148ccf49dfd3ce85"/><file name="TestHandler.php" hash="af915fa2a14a03fc3c0ec01af9782c86"/><file name="WhatFailureGroupHandler.php" hash="cc7c8c6047b554c24a682575a53aa4bc"/><file name="ZendMonitorHandler.php" hash="dc2ee6716c9dee2ef3d420c41ac0dc2b"/><dir name="FingersCrossed"><file name="ActivationStrategyInterface.php" hash="6bf84f27f4b7a0016afa63430cf6f8be"/><file name="ChannelLevelActivationStrategy.php" hash="6827ce52b4bc0d222300712248c1b40d"/><file name="ErrorLevelActivationStrategy.php" hash="f31a9ad59022efe0de63808d275a0031"/></dir><dir name="SyslogUdp"><file name="UdpSocket.php" hash="fa10242c08d290a25316a482674bdf13"/></dir></dir><dir name="Formatter"><file name="ChromePHPFormatter.php" hash="71556b69ade93eb7eb296611dcde581e"/><file name="ElasticaFormatter.php" hash="cdf84d2666304c10184eb4ee0787e4be"/><file name="FlowdockFormatter.php" hash="847fdcee07390783044ae1e4555f6b08"/><file name="FormatterInterface.php" hash="6393c1db9899b0f9e3fc4ad3d6a898dd"/><file name="GelfMessageFormatter.php" hash="d440fde52d75340eb1a307cba0970e64"/><file name="HtmlFormatter.php" hash="b8f7335803da9715cfc9284f87ddeccd"/><file name="JsonFormatter.php" hash="e95ef9e43b17778829fc6fbceb7600a2"/><file name="LineFormatter.php" hash="c26b11f2d1a19986eaa1c77ea6f7d7a4"/><file name="LogglyFormatter.php" hash="17c423e50573a684d3f51539d6f27558"/><file name="LogstashFormatter.php" hash="8b4098c5bc5d6f17140da077037ac586"/><file name="MongoDBFormatter.php" hash="c9de870b2087e9881756ccddcb751987"/><file name="NormalizerFormatter.php" hash="6d79517adaa0853f23e5677360996f5f"/><file name="ScalarFormatter.php" hash="9934bbe7fbf1a7536cbabf0bb31fac8b"/><file name="WildfireFormatter.php" hash="0a57bdcd42584e1b41e4e093631a22f6"/></dir></dir></dir></dir></dir><dir name="predis"><dir name="predis"><file name="CHANGELOG.md" hash="e0f3f8442d7797bd8c6fd986d0249faf"/><file name="CONTRIBUTING.md" hash="63afed85f6a698c677e46469c2cfe4bf"/><file name="FAQ.md" hash="9b21e1df8df17052f5519ae6fb5c1f81"/><file name="LICENSE" hash="00790a0fd679da49c34df6daa9a01326"/><file name="README.md" hash="c6dd8fc021471b29e6073a55e7d3ce3a"/><file name="VERSION" hash="ee7ab3e7e15d1e00ec001ca33b4571f1"/><file name="autoload.php" hash="ec13dd579498b74ec2b0cbfce29e3108"/><file name="composer.json" hash="7f11b65b9c704f61a41c2123267589c8"/><file name="package.ini" hash="913191d10484d4b47b9993d39d0dc0fd"/><dir name="bin"><file name="create-command-test" hash="75f60caeafbb8d5f6fa5a1f4f280da0b"/><file name="create-pear" hash="0e23094242ce1d97017c050a41573cdc"/><file name="create-phar" hash="bba61512813f4db0e75c9b7054216130"/><file name="create-single-file" hash="a55776966755e2030a0e124d81dd2b02"/></dir><dir name="src"><file name="Autoloader.php" hash="e6e3182087bdd190a5843964de22d2c0"/><file name="Client.php" hash="c3eab3e0ade4a70ac2103af55d8c624d"/><file name="ClientContextInterface.php" hash="5118459f72c01e24e3553091f1405a19"/><file name="ClientException.php" hash="7306d1c9747302f46d1104fedf2046c8"/><file name="ClientInterface.php" hash="468c404fadd5db679bb87543dc14f60c"/><file name="CommunicationException.php" hash="b4d3f6df7f982a71fa263c30f90a7373"/><file name="NotSupportedException.php" hash="b591f067ecec0ddbc6b2b55d831d61a5"/><file name="PredisException.php" hash="8bbe7436aca08886e38b61f9d731b7be"/><dir name="Protocol"><file name="ProtocolException.php" hash="f928033b8cc102e386dafaedc0ff2eb8"/><file name="ProtocolProcessorInterface.php" hash="8d598b765dd63c5d14c516a0b912d2f4"/><file name="RequestSerializerInterface.php" hash="60c71f3f64ec489d48a028db56290a5f"/><file name="ResponseReaderInterface.php" hash="b0d178451b77c5217fc9868df9584ccc"/><dir name="Text"><file name="CompositeProtocolProcessor.php" hash="24151fd2645a776e8da652f586210e6b"/><file name="ProtocolProcessor.php" hash="b6e8976fb17d1e0dbd8ec351ba3e1422"/><file name="RequestSerializer.php" hash="33e2583b66439af13321c19be1e2e497"/><file name="ResponseReader.php" hash="5612ca9b7d3331a06444f533bbde3e58"/><dir name="Handler"><file name="BulkResponse.php" hash="53711c0961a7d3f42028203fc3357228"/><file name="ErrorResponse.php" hash="1a035376927576a72bd34826a4c21d54"/><file name="IntegerResponse.php" hash="7b204ca6bd31aa6da5f886b3194b4c10"/><file name="MultiBulkResponse.php" hash="5a364cbbf4246daa49c5abb517ff7b6f"/><file name="ResponseHandlerInterface.php" hash="a5ef6aa03a0a650921ffa13cc7e11574"/><file name="StatusResponse.php" hash="f32260b486f5bb54c98d71822bf29e99"/><file name="StreamableMultiBulkResponse.php" hash="fc616aa2256905e2ddf70f1075ee3065"/></dir></dir></dir><dir name="Pipeline"><file name="Atomic.php" hash="109685b66fb7f6b312c275dc8a04a231"/><file name="ConnectionErrorProof.php" hash="3e2b697c2f7b0a2707d9438ea21d3d18"/><file name="FireAndForget.php" hash="4157723e3ace2b099c648441b09dcb20"/><file name="Pipeline.php" hash="31b7c0a88d8cb78783166e02f82b1c12"/></dir><dir name="Monitor"><file name="Consumer.php" hash="f4f049acbdda880fb412060c1e28215b"/></dir><dir name="Response"><file name="Error.php" hash="111ff4d86eec2aede68e09e5176a1306"/><file name="ErrorInterface.php" hash="6dd00e7efd24db4782c501bb10b2667f"/><file name="ResponseInterface.php" hash="edaa02c170a0ac9452a9a834b9961b89"/><file name="ServerException.php" hash="ec5de38d04237f875c52e6c54b1f6e28"/><file name="Status.php" hash="880f48b8086f90799350268a544bbcac"/><dir name="Iterator"><file name="MultiBulk.php" hash="f3a3337be69159b359b587a7c976da52"/><file name="MultiBulkIterator.php" hash="21bcb2fddadf756bc14d941d7ad12b05"/><file name="MultiBulkTuple.php" hash="2228556e650b5b055803fc9f39388746"/></dir></dir><dir name="Transaction"><file name="AbortedMultiExecException.php" hash="73d03109d5fb8b28c409c945cb52d014"/><file name="MultiExec.php" hash="d08d2cd2a63ca2877ec72bf681c403cd"/><file name="MultiExecState.php" hash="bf93def4173f4f940e7f5d20e5ddf683"/></dir><dir name="Collection"><dir name="Iterator"><file name="CursorBasedIterator.php" hash="84c679c0a965ca6e67bf423d2f0afc9e"/><file name="HashKey.php" hash="349fa0fbad2a676ee2d9af152e611b47"/><file name="Keyspace.php" hash="f9e63377440d2bf963c7822dae3c11fa"/><file name="ListKey.php" hash="39b1aa789607f6ebd8d8edc811ad46b0"/><file name="SetKey.php" hash="2a5aed95b475f26ea36089015a89e6f1"/><file name="SortedSetKey.php" hash="62bfc8611f1c14108d9700f12935fac9"/></dir></dir><dir name="Command"><file name="Command.php" hash="36c04408a6ad7ff1ac03915e5250d304"/><file name="CommandInterface.php" hash="75f7437242d0cfce8dd7855d1026b2e5"/><file name="ConnectionAuth.php" hash="08517fd3e2121879d2c843667279ae33"/><file name="ConnectionEcho.php" hash="4752a5d275d1ed1eec1d013ff457b823"/><file name="ConnectionPing.php" hash="cc427bc9616ea5208af35d09bf1cbd72"/><file name="ConnectionQuit.php" hash="958054f928c4f5395592b79d31c9c121"/><file name="ConnectionSelect.php" hash="bf1e46d6a2f8c61df6df1176acd8ea5c"/><file name="HashDelete.php" hash="94fdd8a0fd58f4c355fe78e32439cc1d"/><file name="HashExists.php" hash="89cd47bf201407832262d99f9be1f9f9"/><file name="HashGet.php" hash="d093194a31d966dfcd38426e1d25cef9"/><file name="HashGetAll.php" hash="0ea55178bf332cf398159cabacb035d9"/><file name="HashGetMultiple.php" hash="26b84784c98598e84268cd5d325f8247"/><file name="HashIncrementBy.php" hash="c251bca81f915dcbd99d0ef0554a28c2"/><file name="HashIncrementByFloat.php" hash="84425c9986b970cde42365fb1b365493"/><file name="HashKeys.php" hash="4532a52df08d04a15dffd8d6ac2cd8d0"/><file name="HashLength.php" hash="ab770395dcee099404e388505284eaa6"/><file name="HashScan.php" hash="7f4dd8a21d3a1cb154708e838cf26f27"/><file name="HashSet.php" hash="57bd67b8d057b8e746e6710478549fa0"/><file name="HashSetMultiple.php" hash="f3c0f91f6064781e205254f8f3b5eeef"/><file name="HashSetPreserve.php" hash="65827ba95c601d5b16fbe9bbaec6c98e"/><file name="HashValues.php" hash="05972c839788efe1c80fef568556faed"/><file name="HyperLogLogAdd.php" hash="7f8926288a1b00e3588c0ba88e5fbdbd"/><file name="HyperLogLogCount.php" hash="35e62fa06b9e3c9d6c67281f1b2931f4"/><file name="HyperLogLogMerge.php" hash="62e906afd5aee99ccb88800293adc93e"/><file name="KeyDelete.php" hash="3bbd86c22461540a4d1743b95f4b0e30"/><file name="KeyDump.php" hash="6f32fac9f16339704c627156c91c6d28"/><file name="KeyExists.php" hash="aa67eb4afe4bf63adeaeaeff6ad58b2e"/><file name="KeyExpire.php" hash="cc91358dd7450918209058567e9c8618"/><file name="KeyExpireAt.php" hash="a741dfc1042699904c301728f1942a6f"/><file name="KeyKeys.php" hash="2da6af98f57113258a332c7af54e95e0"/><file name="KeyMove.php" hash="0dbd96ef03de1d60d714aa6fa721ce08"/><file name="KeyPersist.php" hash="21421f138d246ce287f35305c2f5588d"/><file name="KeyPreciseExpire.php" hash="13297e46d987a669639b4b50f75d5cef"/><file name="KeyPreciseExpireAt.php" hash="9c8322af7b9db7a34e4cd671695688b3"/><file name="KeyPreciseTimeToLive.php" hash="b771fb924d71acf35a3d23c81bd10de6"/><file name="KeyRandom.php" hash="41f452b72762d01c1c802c56e2529834"/><file name="KeyRename.php" hash="e85ca5b20975c771ae54dde509228f20"/><file name="KeyRenamePreserve.php" hash="5ba7f6ea049c634b09b559b10fb3bc3d"/><file name="KeyRestore.php" hash="5d024818a31f197a957df9c0a90f1d2a"/><file name="KeyScan.php" hash="560e13389eab35ff9dd753b9f71673c5"/><file name="KeySort.php" hash="cbca68fde1074e9fc3888bd656b20e7e"/><file name="KeyTimeToLive.php" hash="3e7104cf23d47b699d9c744c3ab798e0"/><file name="KeyType.php" hash="2c440c356fae34d1456f7fb9eaa77e78"/><file name="ListIndex.php" hash="d0bab37da91b92270abd297a257c8170"/><file name="ListInsert.php" hash="bba6d07b995639add60df529232e7c41"/><file name="ListLength.php" hash="ca2e82acae9e6086e021ee9d53fc64d2"/><file name="ListPopFirst.php" hash="fdf59940b66b6e83892d10c06604d9fc"/><file name="ListPopFirstBlocking.php" hash="90bf43ad0b82b66a9129bb29cf3a19ab"/><file name="ListPopLast.php" hash="3cda34d82ed505056eeff92319bc0ac0"/><file name="ListPopLastBlocking.php" hash="855743043ca91abbcc11ab8366e330de"/><file name="ListPopLastPushHead.php" hash="8649ba8925e1e0e583a01150b61a0284"/><file name="ListPopLastPushHeadBlocking.php" hash="78d94e482fcaac133b432afd47f8732b"/><file name="ListPushHead.php" hash="eb841a8a7b17932882f7965be1f8f5ea"/><file name="ListPushHeadX.php" hash="22487066af26f0fb5e77f04c73c9ae1b"/><file name="ListPushTail.php" hash="46c96942381e3ace3c30130176131a9a"/><file name="ListPushTailX.php" hash="53bd734c34b4cde9382fb2e302f5ca5d"/><file name="ListRange.php" hash="0a8a73ab3b9d685a913362ed2f48a845"/><file name="ListRemove.php" hash="997f491049e36ae121782852a4212eaf"/><file name="ListSet.php" hash="89eaab7d92a72bc46b07aca89290971c"/><file name="ListTrim.php" hash="7408793d6adfeebf9a5086f432b10eb7"/><file name="PrefixableCommandInterface.php" hash="94bb1636edac0bbca6f49d01711b9833"/><file name="PubSubPublish.php" hash="b67074df2f3e02a70694c4f54a21992b"/><file name="PubSubPubsub.php" hash="41115321e077a510869c04efc3fcebee"/><file name="PubSubSubscribe.php" hash="ac2bc5ceb60b13024f291cf70d812a7d"/><file name="PubSubSubscribeByPattern.php" hash="1a0b13923d342450a0e6c6ef8751eab4"/><file name="PubSubUnsubscribe.php" hash="5bf2d358c4391f99fdb43b0c0abe3db8"/><file name="PubSubUnsubscribeByPattern.php" hash="e5b6351d45f3c30360be06a4e9c4abeb"/><file name="RawCommand.php" hash="0e128f458151ca6ed20a2b6501273479"/><file name="ScriptCommand.php" hash="a536013379d5b067857cc10f2ed999f3"/><file name="ServerBackgroundRewriteAOF.php" hash="23a399d0f9a5a7199910ae02147e3ac3"/><file name="ServerBackgroundSave.php" hash="d20c0cf4f24ff33a5d0cbdb277f179cc"/><file name="ServerClient.php" hash="5f7a1efe2cb7443a38caf9eb1c6a9aed"/><file name="ServerCommand.php" hash="1d48b5bdf0227a696d51fab6f77f6228"/><file name="ServerConfig.php" hash="c7e8219789ebe6e4d74d63f797e5a234"/><file name="ServerDatabaseSize.php" hash="7422d54bfffa92f79b5862bbfd8f0523"/><file name="ServerEval.php" hash="44f387be302b9a0994abfde3fd5c11db"/><file name="ServerEvalSHA.php" hash="9cf839765e4075503e94ed5780a51b38"/><file name="ServerFlushAll.php" hash="ec2a7565095623210596836a963aad0a"/><file name="ServerFlushDatabase.php" hash="efd97498c0c2b1fdf5a28cbd3b6119f2"/><file name="ServerInfo.php" hash="78f9fd0ef946566fa15ce620209f9b0f"/><file name="ServerInfoV26x.php" hash="a0319519359ca94da432446712724423"/><file name="ServerLastSave.php" hash="0ef27248f7f06ad4e2b78c4be8ab0604"/><file name="ServerMonitor.php" hash="9a60cd35955e8bf1fc2a13e4018e29a1"/><file name="ServerObject.php" hash="78ac6fb1f4e086d70d9fdab920885832"/><file name="ServerSave.php" hash="c1bf690511000e2c366b1244b73c36ad"/><file name="ServerScript.php" hash="c789d80ae13f01ca7610c06f6663a184"/><file name="ServerSentinel.php" hash="f0f16fc1ef9fb9c41393cdb51770a57a"/><file name="ServerShutdown.php" hash="bf1cd9adf6dfe3dffe6553e03c2557ae"/><file name="ServerSlaveOf.php" hash="d8c465a12693b5f4e516460d1a0629f5"/><file name="ServerSlowlog.php" hash="c2ee09a363f1500ff2b3c0fe1a32d833"/><file name="ServerTime.php" hash="c674d34f6a86a22aeecededd86b51985"/><file name="SetAdd.php" hash="f9306a746e9aa222850c16c7c8289ba4"/><file name="SetCardinality.php" hash="1ba3058bed4334c2e8f3984a4737bfd0"/><file name="SetDifference.php" hash="2820fedcb21e442b71f8d3db82d6754d"/><file name="SetDifferenceStore.php" hash="97fa668a5e500e3038984503cb7e3fac"/><file name="SetIntersection.php" hash="cbadd93e4d1324813de45ff134e3cb42"/><file name="SetIntersectionStore.php" hash="6ff76d5a3232385fbbfdfb68ec811055"/><file name="SetIsMember.php" hash="fe28bacd3aff8c63cb890811c4cf345c"/><file name="SetMembers.php" hash="bc857dc5f9af3b3eafcee7e5fb68a407"/><file name="SetMove.php" hash="fe0385feb0007cdbef65093f36ee4d83"/><file name="SetPop.php" hash="82c2a4a4d4317d9a3bd694ad8dfb4874"/><file name="SetRandomMember.php" hash="a173112e7e61ce6893f9be8037727639"/><file name="SetRemove.php" hash="8c97b139e83b1e0491b0350d768ed83a"/><file name="SetScan.php" hash="e44f8deb8769e35853354ac5ab9acfac"/><file name="SetUnion.php" hash="08517b88933ca20269bae7f5a42f5f79"/><file name="SetUnionStore.php" hash="d0e74181b099747c1199cee90621fbd7"/><file name="StringAppend.php" hash="3f0007b36691d5f7eaef39657e09609c"/><file name="StringBitCount.php" hash="753ced9226c0ab2bb2cf08b7bb05a807"/><file name="StringBitOp.php" hash="539f183f0adedbd12f19019ae238ff7a"/><file name="StringBitPos.php" hash="a12046384a9bcadaad73c081a6d69c7c"/><file name="StringDecrement.php" hash="6d9ebf85a13864821f9aa296fffb1e4a"/><file name="StringDecrementBy.php" hash="16a06cf187ecfd829be06c38fcced4d2"/><file name="StringGet.php" hash="67ca0e23568af6f4a3753bbf71dca16f"/><file name="StringGetBit.php" hash="57901f2146b1562c206aa20faa8f1de4"/><file name="StringGetMultiple.php" hash="eaa0c97d42d95fa01ba1b31792947311"/><file name="StringGetRange.php" hash="90ad8bddc7f9d8339b67cdc85ab974db"/><file name="StringGetSet.php" hash="041a263a21e822ed829ea5e19c41d8d8"/><file name="StringIncrement.php" hash="0834c77f6e0788f12b3f370f771e3db2"/><file name="StringIncrementBy.php" hash="b61c343123b36dc223c47a9b0f6ba4b8"/><file name="StringIncrementByFloat.php" hash="04b066fd187fa3d39dd42f9a43e487dd"/><file name="StringPreciseSetExpire.php" hash="b1736d59c570cb6cd09b2d8c3703ddbe"/><file name="StringSet.php" hash="ad0a98f1f38960a27806ee7f1f27a482"/><file name="StringSetBit.php" hash="ebe3ceeb79f32298d31e115bcdbb0c87"/><file name="StringSetExpire.php" hash="62b9d75cddc7a9895270ce91ff020f53"/><file name="StringSetMultiple.php" hash="fa89929ad970fa7b3d92fcf33744a502"/><file name="StringSetMultiplePreserve.php" hash="db3eeaa3414e04e36392da0171394826"/><file name="StringSetPreserve.php" hash="53aa3ca896f711c650a6c7ac2b62ec5f"/><file name="StringSetRange.php" hash="5344c6bbe502b4e92881f7a21ea88601"/><file name="StringStrlen.php" hash="f4669e56ac69323d5acf1fc8a32da3cc"/><file name="StringSubstr.php" hash="8a428107813844ce9c2e4deb6746e971"/><file name="TransactionDiscard.php" hash="2666f21f3486ec084dbb9d1115e9c2c3"/><file name="TransactionExec.php" hash="13063a29fbcddabcf85eb6df89062717"/><file name="TransactionMulti.php" hash="76dfbd460873e01b0ee6a9103190f96c"/><file name="TransactionUnwatch.php" hash="3501e23d12b538f930c9c8a3a7b32f1b"/><file name="TransactionWatch.php" hash="4b186a914c1a625c134c5a0f541733c5"/><file name="ZSetAdd.php" hash="e51a6a6d4c6a4f196df98f02a5dcdf9d"/><file name="ZSetCardinality.php" hash="d8591e63f60f00a5bacca2d4ae910cc7"/><file name="ZSetCount.php" hash="9266eeef4c8aaf035b626483e038f82f"/><file name="ZSetIncrementBy.php" hash="0c45314f0c317521be38e989544ff41f"/><file name="ZSetIntersectionStore.php" hash="16af8a1df3bc591ec06739cd1b9a5374"/><file name="ZSetLexCount.php" hash="8e67edaa817e448576c1a8becdc0daa5"/><file name="ZSetRange.php" hash="d11307b84258562aa3b524ba0f013e3b"/><file name="ZSetRangeByLex.php" hash="22fb06edd69c94fd46cca9b64923f456"/><file name="ZSetRangeByScore.php" hash="af260c4134921dbc873fc8274342c74a"/><file name="ZSetRank.php" hash="fbafab26943c01656f1392627bb9123e"/><file name="ZSetRemove.php" hash="96b4a1d71eb1a3fe784c3e80036803af"/><file name="ZSetRemoveRangeByLex.php" hash="503db12e935f574ec07785ca4fe4b181"/><file name="ZSetRemoveRangeByRank.php" hash="d877a99d4f0ec3109f5decdcd5c224f7"/><file name="ZSetRemoveRangeByScore.php" hash="cbc9adcf43862325dcf950fe446e9534"/><file name="ZSetReverseRange.php" hash="a98fa9863ffce97097a42235f5b942e2"/><file name="ZSetReverseRangeByScore.php" hash="fde347f4a9d0e246a82c64e5c9965d7b"/><file name="ZSetReverseRank.php" hash="d2f86e8e624a1f15f97b646fcc38d5b0"/><file name="ZSetScan.php" hash="1600101b73574d98d83ccdf2e16daaae"/><file name="ZSetScore.php" hash="73eefb85349ee0a8ba83e0f5ed1da32f"/><file name="ZSetUnionStore.php" hash="56294db0476d69e2549ff6f10a9d7180"/><dir name="Processor"><file name="KeyPrefixProcessor.php" hash="0ed53ddf5b51777120a47b34ed1cfa52"/><file name="ProcessorChain.php" hash="fff2a4379f8b1efdb940ab137f58230d"/><file name="ProcessorInterface.php" hash="72ffbd5ddd3607cb462b6b7fe78fc323"/></dir></dir><dir name="Session"><file name="Handler.php" hash="23f36a306c69b80b2f6da6ef9b2651ff"/></dir><dir name="Configuration"><file name="ClusterOption.php" hash="985af02a8b00b2bdf86997867135c4ae"/><file name="ConnectionFactoryOption.php" hash="695d55c91e09f5210f9f67c27270f288"/><file name="ExceptionsOption.php" hash="3fa433a7986267ab015e4d37b6ec71e2"/><file name="OptionInterface.php" hash="a5b188297dd585d77a9126b2077dc354"/><file name="Options.php" hash="2165639175238062432ecd11f2970803"/><file name="OptionsInterface.php" hash="713e47703da3ca5dce60817c4213e61d"/><file name="PrefixOption.php" hash="f09604a43da75966ef7f2e3c45db07e3"/><file name="ProfileOption.php" hash="4e059e29f4fd88bb3885c08bf5c0be2e"/><file name="ReplicationOption.php" hash="17457f1b288d58ac556a4c5275f91b95"/></dir><dir name="Cluster"><file name="ClusterStrategy.php" hash="279420f2a65eeb1ed2a1c981619f2ea9"/><file name="PredisStrategy.php" hash="06c6b779c001341c68ef58ce207ff7ab"/><file name="RedisStrategy.php" hash="808094b061d535244aaeb28994540f81"/><file name="StrategyInterface.php" hash="eafb846d76ecf1ed5551f91d2aa5d9d0"/><dir name="Hash"><file name="CRC16.php" hash="fcf4cebd3bab0be0e9b9e632a9e46af7"/><file name="HashGeneratorInterface.php" hash="3358952c27b3b2c7c427d43588805269"/></dir><dir name="Distributor"><file name="DistributorInterface.php" hash="ee012af49ef250b59de68318f796c4c0"/><file name="EmptyRingException.php" hash="ceb7146f6a3e7b7f253f0a2af088cd88"/><file name="HashRing.php" hash="1810893a93918dd307940fd7557853e2"/><file name="KetamaRing.php" hash="4d5b68f6105a060e3bc5d3368f3d1c5d"/></dir></dir><dir name="Replication"><file name="ReplicationStrategy.php" hash="3053ecc5e2e40319dda94fa012f480b1"/></dir><dir name="PubSub"><file name="AbstractConsumer.php" hash="5a1f75dccc025c49caa6da2a992c377b"/><file name="Consumer.php" hash="a0e8ec87bed962614dec0ae796c504ab"/><file name="DispatcherLoop.php" hash="33bb3fb17c1dd64a69a5cb540c3023ae"/></dir><dir name="Connection"><file name="AbstractConnection.php" hash="b8d58d15d47d9b8f58428185d0dd16ae"/><file name="AggregateConnectionInterface.php" hash="d470e4344624e522c7ef49b6fefeee8a"/><file name="CompositeConnectionInterface.php" hash="a7bf466a919874e5cba8c384c8203d69"/><file name="CompositeStreamConnection.php" hash="1f6242efa8f50863786d46ff0aef671e"/><file name="ConnectionException.php" hash="8e00da992cdc2545e475c67529347766"/><file name="ConnectionInterface.php" hash="6b868134c8f9103b8dd7ba5b2a4314f0"/><file name="Factory.php" hash="5320f4fc99b1cae6a44caa414e721ff0"/><file name="FactoryInterface.php" hash="66b29226692b1a01b6e8c5a8dd4b9cd8"/><file name="NodeConnectionInterface.php" hash="4bc78b4dcc26ef118c2258e4cd320a9a"/><file name="Parameters.php" hash="0b53f365a7726bfaebe82311d5d19c19"/><file name="ParametersInterface.php" hash="3bb1a3fb9cd8053a263ce4c477165faa"/><file name="PhpiredisSocketConnection.php" hash="fced1a025cfc8390a9827b6469929eb9"/><file name="PhpiredisStreamConnection.php" hash="4601fdcde27876205b1839269caca3c0"/><file name="StreamConnection.php" hash="3864a8d9be34eb5378480b150a8ff43a"/><file name="WebdisConnection.php" hash="32b133f4cf055edcf28f2cea43a44997"/><dir name="Aggregate"><file name="ClusterInterface.php" hash="2e1c30fc20f14637b1a149a0b59bf1ad"/><file name="MasterSlaveReplication.php" hash="04a553406de92c0d9f032ccc45dcb9a6"/><file name="PredisCluster.php" hash="1430178bba546bf128088cbbe40a38fe"/><file name="RedisCluster.php" hash="b7843a36ad645642a8ff33564778500a"/><file name="ReplicationInterface.php" hash="085fd6ff8b71bf6e81a416382df04246"/></dir></dir><dir name="Profile"><file name="Factory.php" hash="416824387d6f5e1c8ff67e157387fc6f"/><file name="ProfileInterface.php" hash="bcf10be15f1fc6e86d537eb5290e61ab"/><file name="RedisProfile.php" hash="21293f767ee93954555e20881e43fdb9"/><file name="RedisUnstable.php" hash="73e03a96b5cba038a1af89e31d9ddc7b"/><file name="RedisVersion200.php" hash="11b57845a83381b8a4b9680873468cbd"/><file name="RedisVersion220.php" hash="2d7db9a4ae9111bae9efff07d22772a4"/><file name="RedisVersion240.php" hash="d742915f67a5f71d7d09d632bcea13ea"/><file name="RedisVersion260.php" hash="8bbb19cc115ede79db07283f475d3998"/><file name="RedisVersion280.php" hash="155cd06e7d1ef6e77714c5247e332664"/><file name="RedisVersion300.php" hash="a8a7564ed89b10306e48721df979ef14"/></dir></dir></dir></dir><dir name="pimple"><dir name="pimple"><file name="CHANGELOG" hash="e8b356d91a25a6df0f864f3e65fa3a32"/><file name="LICENSE" hash="8938635ab76e9450ef35e27a403f4dd8"/><file name="README.rst" hash="d9e669798984b5d7ee8826e97cf72cfe"/><file name="composer.json" hash="c9a44b4d06e4f3b03a70cdf0ac22e686"/><file name="phpunit.xml.dist" hash="1e1be301b5f9bebf522cad3000f5798f"/><dir name="ext"><dir name="pimple"><file name="README.md" hash="322b465f9f62e4a3b2a00692f036d8ba"/><file name="config.m4" hash="e909b17186c90f31d1d6b9ce598ce286"/><file name="config.w32" hash="5b49e8709c8d5e8957b599db0e728b73"/><file name="php_pimple.h" hash="95a4a9ecab8178dbf944c83913878c24"/><file name="pimple.c" hash="5edf1a65952e5c148332ad36650ebb66"/><file name="pimple_compat.h" hash="726240296bf6b4781095d427d7519fcb"/></dir></dir><dir name="src"><dir name="Pimple"><file name="Container.php" hash="d431824e2742395ae4d5099a680ecd9b"/><file name="ServiceProviderInterface.php" hash="18486f1b6cde60410f53c9be072360db"/><dir name="Tests"><file name="PimpleServiceProviderInterfaceTest.php" hash="7231dc11b0ce05f35d7d6a1a67ad93eb"/><file name="PimpleTest.php" hash="155e3384d39d5df9c6f3e66acd9b67c7"/><dir name="Fixtures"><file name="Invokable.php" hash="901d2a4b096aac148b52a416ddf99d7a"/><file name="NonInvokable.php" hash="e16d69d7de4cf1dd7fdcfe777ac865fc"/><file name="PimpleServiceProvider.php" hash="0252d01b5ab3b0f274f419d1ec54ce3a"/><file name="Service.php" hash="23e9ac8bc2ea1dc68ad0f793a87f22b7"/></dir></dir></dir></dir></dir></dir><dir name="psr"><dir name="log"><file name="LICENSE" hash="1a74629072fd794937be394ab689327e"/><file name="README.md" hash="144a71a4e1f9c67ac79751acc37614c4"/><file name="composer.json" hash="6e872afc69e782d4a56d2d7094bb24b8"/><dir name="Psr"><dir name="Log"><file name="AbstractLogger.php" hash="26eb607e5318188016615326bd89a9be"/><file name="InvalidArgumentException.php" hash="7d2f0bd1583524d739fff12f0507de65"/><file name="LogLevel.php" hash="cc226142fd5d390d030b39c61cf97843"/><file name="LoggerAwareInterface.php" hash="cfac6d4dc3ebf2c7f0e49f74d1bcd44a"/><file name="LoggerAwareTrait.php" hash="221f47ac7d3da4800d2c0e26cdfb351b"/><file name="LoggerInterface.php" hash="1ae09682227159416a299d0ea940d34e"/><file name="LoggerTrait.php" hash="d1152080b1b7a8812f6a3023b63f0fc0"/><file name="NullLogger.php" hash="d66f51c1fc729b09e54fd8821c7dfe46"/><dir name="Test"><file name="LoggerInterfaceTest.php" hash="660a7ddd367dbf434c5ec6e463149d42"/></dir></dir></dir></dir></dir><dir name="composer"><file name="ClassLoader.php" hash="9c1e7fe1a9eb1693e07ee4420ca5361e"/><file name="LICENSE" hash="084a034acbad39464e3df608c6dc064f"/><file name="autoload_classmap.php" hash="c5951e03ad25fb6cb31ccc9d4dd55abd"/><file name="autoload_namespaces.php" hash="7357a769234df682726c665bcad4d93b"/><file name="autoload_psr4.php" hash="22cbc192e641aaa2ba978ad1337ffd85"/><file name="autoload_real.php" hash="13c1e310e366c21c52da45d645663066"/><file name="installed.json" hash="c454f1239aa39a362f42460fa9738cf1"/></dir><dir name="expressly"><dir name="php-common"><file name="LICENSE" hash="3b8024defbc61154507b15999bd0554b"/><file name="README.md" hash="f3c32c2563af07c909ce314441202971"/><file name="composer.json" hash="38351b3a595803eea201d06edf3c3246"/><file name="composer.lock" hash="634643dfe9c9b78e59522815aa341396"/><file name="phpunit.xml" hash="0ef64d17d42b3b1c349fee57675262bb"/><dir name="bootstrap"><file name="bootstrap.php" hash="8e99870d29a297071ed080f41b70a43d"/><file name="config.php" hash="c4a4bb2509218567344041974d6daab7"/><file name="services.php" hash="9bbe2b804963e2262012eb5360310163"/></dir><dir name="src"><file name="Client.php" hash="b254f47d7960106a63d81b5928e5d895"/><dir name="Route"><file name="AbstractRoute.php" hash="258e4e16a704b3d2a81796b3ff5d2c66"/><file name="BatchCustomer.php" hash="ed2d036b7e04cb700c4ce98ffe25327e"/><file name="BatchInvoice.php" hash="e0322710f72f508dbad1a58edac15b0a"/><file name="CampaignMigration.php" hash="eeb14e485c47e3b3ba3ae49b73063bbb"/><file name="CampaignPopup.php" hash="1d3c4c6ff3ba1ebb02856b4a60f82b7d"/><file name="Ping.php" hash="9e287092328f3e9c131fe6af9496305e"/><file name="Registered.php" hash="013c35903987e933b1496cbfc7a840bc"/><file name="RouteInterface.php" hash="b11e3f26ea38a9e699ced525f86276d5"/><file name="UserData.php" hash="afe9cb2414a206eb433dd1496cfbcddc"/></dir><dir name="Resources"><dir name="config"><file name="config.yml" hash="deb4d32828f248c97bf716d4d2f90f90"/></dir></dir><dir name="Exception"><file name="ExceptionFormatter.php" hash="e900009a15c889cc01340c88b1059b11"/><file name="GenericException.php" hash="f4a36e72e97d063e962846731c545536"/><file name="InvalidAPIKeyException.php" hash="755576bfe01491ceb6e5d9cd73aaa4a2"/><file name="InvalidURIException.php" hash="fadac9d938301a13ecabad10a042ccb6"/><file name="UnauthorizedException.php" hash="ea7659f8f0c1beff4cb0e24c04304996"/><file name="UserExistsException.php" hash="29ebc89a51bc3b496e86ea9a8613ea2f"/></dir><dir name="Resolver"><file name="ResolverInterface.php" hash="508c9ac60b3405113b07b0e613f3c77f"/><file name="RouteResolver.php" hash="f19f0697a0fc3c2f8de4cc9d3d2389b4"/></dir><dir name="Validator"><file name="EmailValidator.php" hash="2e92f2605f75cfad8f05b228e882bf0e"/><file name="UuidValidator.php" hash="8f624bc422089020b4a2242a6378921a"/><file name="ValidatorInterface.php" hash="266959a22cbdb4d5d0fa76635783d1c8"/></dir><dir name="Logger"><file name="DummyLogger.php" hash="c73e4702fd3395f36aa642f66683891b"/></dir><dir name="Subscriber"><file name="BannerSubscriber.php" hash="4d18e05a2fae5a1f4ea2f462c872cc06"/><file name="CustomerMigrationSubscriber.php" hash="79f08f7db5d27be24762893bb99fd91a"/><file name="MerchantSubscriber.php" hash="57bc38d7924dff3ab8a1bf85f34e1c50"/><file name="UtilitySubscriber.php" hash="b71a45cdfca7c53e01b3a193d705c4a1"/></dir><dir name="Provider"><file name="ConfigProviderInterface.php" hash="542c532c3e1e4c5753a3359d7f456043"/><file name="CountryCodeProvider.php" hash="25ea99296aa8ddf93e3c07d6d680637d"/><file name="ExternalRouteProvider.php" hash="4ec982a8b3bee60f0a8532d9e44525ab"/><file name="MerchantProviderInterface.php" hash="a92bc08e723c31a5f3e42e4dd533e0f5"/><file name="MockMerchantProvider.php" hash="05e27f6bb874c613167570976157bf6b"/></dir><dir name="Presenter"><file name="BatchCustomerPresenter.php" hash="b60fdcac45993181f8596f40696d1309"/><file name="BatchInvoicePresenter.php" hash="9aa7ca465b0336b4a91bc87fc351a8ae"/><file name="CustomerMigratePresenter.php" hash="e5b87367f727e67412169e124aaf3bb9"/><file name="PingPresenter.php" hash="19244e3fa434b052da02c87895296c27"/><file name="PresenterInterface.php" hash="33fc09dbb8374b4d059605e656171809"/><file name="RegisteredPresenter.php" hash="0869458216644c00fa7a12bd0a2f0dce"/></dir><dir name="ServiceProvider"><file name="CountryCodeServiceProvider.php" hash="d0f30dd04da142443c8a55e4cfdea409"/><file name="DispatcherServiceProvider.php" hash="eba6f43c1888a1f607d6b706c80ed663"/><file name="ExternalRouteServiceProvider.php" hash="690c9fe21b90ff99287b527b81c095fd"/><file name="MerchantServiceProvider.php" hash="626cffff2c99972cc4798d3d97009e63"/><file name="MonologServiceProvider.php" hash="5038b76a49c796df97449eec2ea3651a"/><file name="RouteResolverServiceProvider.php" hash="01c0ef389fc28d1d2cb3e34364b01148"/><file name="ValidatorServiceProvider.php" hash="82fdd0abcdea24caffcdf0944ea7d8ba"/><file name="YamlConfigServiceProvider.php" hash="3a99d5d9c65617b705d32323151130fd"/></dir><dir name="Entity"><file name="Address.php" hash="ce294c0fd1aa8d179c0529354585838d"/><file name="ArraySerializeable.php" hash="7fd82cafe5fb71b46ec8f95bf794b0d3"/><file name="Customer.php" hash="20477bc0c5d534da2ed0bb694f8a8742"/><file name="Email.php" hash="c390e4057bd98fcacb16bd495375f3a7"/><file name="EventDetails.php" hash="6613b55a2fb7e1bcce7de186b886aabd"/><file name="ExternalRoute.php" hash="f1c322a90ce31db338895a1440fa1a77"/><file name="Generic.php" hash="17c3add57d278696beb012c1247a473b"/><file name="Invoice.php" hash="a68c2e0faa8a245de03802e2e5af6778"/><file name="Merchant.php" hash="8ef97e8ce4d4a3fd6af1c1188fdfaa9d"/><file name="MerchantType.php" hash="613aa62038eca2ae6c1c72d413ea3a79"/><file name="Meta.php" hash="10e34d69c567e86072f5303520c08b04"/><file name="Order.php" hash="312e3e8e16e1f5c5c36dd830dad0cec2"/><file name="Phone.php" hash="635d655545f4706d91d982c32cc3ac47"/><file name="Route.php" hash="c2c13becfabe72306db7424840d5648d"/><file name="Social.php" hash="f082f38e0e42306a53bcb28a85bf15cb"/></dir><dir name="Helper"><file name="BannerHelper.php" hash="222e5ddcc72f4cdd36bb77608644a01f"/></dir><dir name="Event"><file name="BannerEvent.php" hash="ea8b68d405c27428f89aa04a38a6104d"/><file name="CustomerMigrateEvent.php" hash="d457166caaa39996f7060e2649c5ef52"/><file name="MerchantEvent.php" hash="57681ea6ffd24b04ee9cabf9428d5b4c"/><file name="PasswordedEvent.php" hash="b31925d5c4f78aab73b48ba98fb5caeb"/><file name="ResponseEvent.php" hash="3fb37fb70871eb335b6cbe590ee33c0e"/></dir></dir></dir></dir><dir name="doctrine"><dir name="collections"><file name="LICENSE" hash="2e75234cfca1e55b1cdce86615dccac9"/><file name="README.md" hash="ff4bde3b2aca7391a4d137fb3723b3bc"/><file name="composer.json" hash="42578bea0e5b42d99f1bb518f58d2e17"/><file name="phpunit.xml.dist" hash="7272ca3f60e392de99fbbbdde54b0f85"/><dir name="lib"><dir name="Doctrine"><dir name="Common"><dir name="Collections"><file name="AbstractLazyCollection.php" hash="0cdd57b872a93b2628928faed9613852"/><file name="ArrayCollection.php" hash="09b2d66c94acc690ee4fc11af85b6e60"/><file name="Collection.php" hash="438d252027560da34a7c9c00630c78b4"/><file name="Criteria.php" hash="7562502458e4882ac010f4855e835112"/><file name="ExpressionBuilder.php" hash="24c848da9c5b947a185bcb863a776438"/><file name="Selectable.php" hash="0022f3302c581784e9cb641244c95b37"/><dir name="Expr"><file name="ClosureExpressionVisitor.php" hash="9c0dfd3cedcf4650b29bb5751e9e8ff0"/><file name="Comparison.php" hash="237dfe5b538a02ee2da863bf98175dbb"/><file name="CompositeExpression.php" hash="576184196f87b460e50e0067c4b9b843"/><file name="Expression.php" hash="b395e08d82471a666b302a29f876d8d2"/><file name="ExpressionVisitor.php" hash="84ed446e7e02dec468b579eecd524693"/><file name="Value.php" hash="9a49bc999242d878a94027b82192889b"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="4ae4af9d1fa70408e2601a082aced6cb"/><file name="system.xml" hash="b7796664433404e6e36699044d6e8d9d"/></dir><dir name="sql"><dir name="expressly_expressly_setup"><file name="mysql4-install-0.1.0.php" hash="df0e8df2fc4e3ab3db5c8c4b193d1fa6"/><file name="upgrade-0.1.0-0.3.0.php" hash="c46aa5a3fad7a30b78d80df9a81697fc"/></dir></dir><dir name="Helper"><file name="Client.php" hash="6329a34a196282b9d4de4e9c697e7477"/><file name="Data.php" hash="de0f52bb051aa83aedf275220b10fcd1"/></dir><dir name="lib"><file name="MerchantProvider.php" hash="2647ecce84f33e3d65e8211bad6392ba"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Expressly_Expressly.xml" hash="f2ad0f1733afcec8ae3ca3edd5574ef1"/></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="expressly.xml" hash="f78c53eb774a181b42013a501b77598e"/></dir></dir></dir></dir></dir></dir></target></contents></package>