Redis Object Cache - Version 2.0.2

Version Description

Version 2.0 is a significant rewrite. Please read the v2.0.0 release notes.

  • Updated POT file and comments for translators
Download this release

Release Info

Developer tillkruess
Plugin Icon 128x128 Redis Object Cache
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.2

Files changed (356) hide show
  1. assets/css/admin.css +4 -0
  2. dependencies/colinmollenhour/credis/.gitignore +4 -0
  3. dependencies/colinmollenhour/credis/.travis.yml +39 -0
  4. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Client.php +0 -0
  5. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Cluster.php +0 -0
  6. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/LICENSE +0 -0
  7. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Module.php +0 -0
  8. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/README.markdown +0 -0
  9. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Sentinel.php +0 -0
  10. dependencies/colinmollenhour/credis/composer.json +24 -0
  11. dependencies/colinmollenhour/credis/phpunit.xml +17 -0
  12. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/phpunit_local.sh +0 -0
  13. dependencies/colinmollenhour/credis/testenv/docker-compose.yml +32 -0
  14. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-5.5/Dockerfile +0 -0
  15. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-5.6/Dockerfile +0 -0
  16. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.0/Dockerfile +0 -0
  17. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.1/Dockerfile +0 -0
  18. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.2/Dockerfile +0 -0
  19. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.3/Dockerfile +0 -0
  20. dependencies/colinmollenhour/credis/tests/.gitignore +3 -0
  21. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisClusterTest.php +0 -0
  22. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisSentinelTest.php +0 -0
  23. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisStandaloneClusterTest.php +0 -0
  24. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisStandaloneSentinelTest.php +0 -0
  25. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisStandaloneTest.php +0 -0
  26. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisTest.php +0 -0
  27. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisTestCommon.php +0 -0
  28. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/keys.test +0 -0
  29. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-2.conf +0 -0
  30. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-3.conf +0 -0
  31. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-4.conf +0 -0
  32. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-auth.conf +0 -0
  33. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-master.conf +0 -0
  34. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-sentinel.conf +0 -0
  35. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-slave.conf +0 -0
  36. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-socket.conf +0 -0
  37. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis_config.json +0 -0
  38. dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/sentinel_config.json +0 -0
  39. dependencies/{vendor/predis → predis}/predis/CHANGELOG.md +0 -0
  40. dependencies/{vendor/predis → predis}/predis/CONTRIBUTING.md +0 -0
  41. dependencies/{vendor/predis → predis}/predis/FAQ.md +0 -0
  42. dependencies/{vendor/predis → predis}/predis/LICENSE +0 -0
  43. dependencies/{vendor/predis → predis}/predis/README.md +0 -0
  44. dependencies/{vendor/predis → predis}/predis/VERSION +0 -0
  45. dependencies/predis/predis/autoload.php +14 -0
  46. dependencies/{vendor/predis → predis}/predis/bin/create-command-test +0 -0
  47. dependencies/{vendor/predis → predis}/predis/bin/create-pear +0 -0
  48. dependencies/{vendor/predis → predis}/predis/bin/create-phar +0 -0
  49. dependencies/{vendor/predis → predis}/predis/bin/create-single-file +0 -0
  50. dependencies/predis/predis/composer.json +31 -0
  51. dependencies/{vendor/predis → predis}/predis/examples/custom_cluster_distributor.php +0 -0
  52. dependencies/{vendor/predis → predis}/predis/examples/debuggable_connection.php +0 -0
  53. dependencies/{vendor/predis → predis}/predis/examples/dispatcher_loop.php +0 -0
  54. dependencies/{vendor/predis → predis}/predis/examples/executing_redis_commands.php +0 -0
  55. dependencies/{vendor/predis → predis}/predis/examples/key_prefixing.php +0 -0
  56. dependencies/{vendor/predis → predis}/predis/examples/lua_scripting_abstraction.php +0 -0
  57. dependencies/{vendor/predis → predis}/predis/examples/monitor_consumer.php +0 -0
  58. dependencies/{vendor/predis → predis}/predis/examples/pipelining_commands.php +0 -0
  59. dependencies/{vendor/predis → predis}/predis/examples/pubsub_consumer.php +0 -0
  60. dependencies/{vendor/predis → predis}/predis/examples/redis_collections_iterators.php +0 -0
  61. dependencies/{vendor/predis → predis}/predis/examples/replication_complex.php +0 -0
  62. dependencies/{vendor/predis → predis}/predis/examples/replication_sentinel.php +0 -0
  63. dependencies/{vendor/predis → predis}/predis/examples/replication_simple.php +0 -0
  64. dependencies/{vendor/predis → predis}/predis/examples/session_handler.php +0 -0
  65. dependencies/{vendor/predis → predis}/predis/examples/shared.php +0 -0
  66. dependencies/{vendor/predis → predis}/predis/examples/transaction_using_cas.php +0 -0
  67. dependencies/{vendor/predis → predis}/predis/package.ini +0 -0
  68. dependencies/{vendor/predis → predis}/predis/src/Autoloader.php +0 -0
  69. dependencies/{vendor/predis → predis}/predis/src/Client.php +0 -0
  70. dependencies/{vendor/predis → predis}/predis/src/ClientContextInterface.php +0 -0
  71. dependencies/{vendor/predis → predis}/predis/src/ClientException.php +0 -0
  72. dependencies/{vendor/predis → predis}/predis/src/ClientInterface.php +0 -0
  73. dependencies/{vendor/predis → predis}/predis/src/Cluster/ClusterStrategy.php +0 -0
  74. dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/DistributorInterface.php +0 -0
  75. dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/EmptyRingException.php +0 -0
  76. dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/HashRing.php +0 -0
  77. dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/KetamaRing.php +0 -0
  78. dependencies/{vendor/predis → predis}/predis/src/Cluster/Hash/CRC16.php +0 -0
  79. dependencies/{vendor/predis → predis}/predis/src/Cluster/Hash/HashGeneratorInterface.php +0 -0
  80. dependencies/{vendor/predis → predis}/predis/src/Cluster/PredisStrategy.php +0 -0
  81. dependencies/{vendor/predis → predis}/predis/src/Cluster/RedisStrategy.php +0 -0
  82. dependencies/{vendor/predis → predis}/predis/src/Cluster/StrategyInterface.php +0 -0
  83. dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/CursorBasedIterator.php +0 -0
  84. dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/HashKey.php +0 -0
  85. dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/Keyspace.php +0 -0
  86. dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/ListKey.php +0 -0
  87. dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/SetKey.php +0 -0
  88. dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/SortedSetKey.php +0 -0
  89. dependencies/{vendor/predis → predis}/predis/src/Command/Command.php +0 -0
  90. dependencies/{vendor/predis → predis}/predis/src/Command/CommandInterface.php +0 -0
  91. dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionAuth.php +0 -0
  92. dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionEcho.php +0 -0
  93. dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionPing.php +0 -0
  94. dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionQuit.php +0 -0
  95. dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionSelect.php +0 -0
  96. dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoAdd.php +0 -0
  97. dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoDist.php +0 -0
  98. dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoHash.php +0 -0
  99. dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoPos.php +0 -0
  100. dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoRadius.php +0 -0
  101. dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoRadiusByMember.php +0 -0
  102. dependencies/{vendor/predis → predis}/predis/src/Command/HashDelete.php +0 -0
  103. dependencies/{vendor/predis → predis}/predis/src/Command/HashExists.php +0 -0
  104. dependencies/{vendor/predis → predis}/predis/src/Command/HashGet.php +0 -0
  105. dependencies/{vendor/predis → predis}/predis/src/Command/HashGetAll.php +0 -0
  106. dependencies/{vendor/predis → predis}/predis/src/Command/HashGetMultiple.php +0 -0
  107. dependencies/{vendor/predis → predis}/predis/src/Command/HashIncrementBy.php +0 -0
  108. dependencies/{vendor/predis → predis}/predis/src/Command/HashIncrementByFloat.php +0 -0
  109. dependencies/{vendor/predis → predis}/predis/src/Command/HashKeys.php +0 -0
  110. dependencies/{vendor/predis → predis}/predis/src/Command/HashLength.php +0 -0
  111. dependencies/{vendor/predis → predis}/predis/src/Command/HashScan.php +0 -0
  112. dependencies/{vendor/predis → predis}/predis/src/Command/HashSet.php +0 -0
  113. dependencies/{vendor/predis → predis}/predis/src/Command/HashSetMultiple.php +0 -0
  114. dependencies/{vendor/predis → predis}/predis/src/Command/HashSetPreserve.php +0 -0
  115. dependencies/{vendor/predis → predis}/predis/src/Command/HashStringLength.php +0 -0
  116. dependencies/{vendor/predis → predis}/predis/src/Command/HashValues.php +0 -0
  117. dependencies/{vendor/predis → predis}/predis/src/Command/HyperLogLogAdd.php +0 -0
  118. dependencies/{vendor/predis → predis}/predis/src/Command/HyperLogLogCount.php +0 -0
  119. dependencies/{vendor/predis → predis}/predis/src/Command/HyperLogLogMerge.php +0 -0
  120. dependencies/{vendor/predis → predis}/predis/src/Command/KeyDelete.php +0 -0
  121. dependencies/{vendor/predis → predis}/predis/src/Command/KeyDump.php +0 -0
  122. dependencies/{vendor/predis → predis}/predis/src/Command/KeyExists.php +0 -0
  123. dependencies/{vendor/predis → predis}/predis/src/Command/KeyExpire.php +0 -0
  124. dependencies/{vendor/predis → predis}/predis/src/Command/KeyExpireAt.php +0 -0
  125. dependencies/{vendor/predis → predis}/predis/src/Command/KeyKeys.php +0 -0
  126. dependencies/{vendor/predis → predis}/predis/src/Command/KeyMigrate.php +0 -0
  127. dependencies/{vendor/predis → predis}/predis/src/Command/KeyMove.php +0 -0
  128. dependencies/{vendor/predis → predis}/predis/src/Command/KeyPersist.php +0 -0
  129. dependencies/{vendor/predis → predis}/predis/src/Command/KeyPreciseExpire.php +0 -0
  130. dependencies/{vendor/predis → predis}/predis/src/Command/KeyPreciseExpireAt.php +0 -0
  131. dependencies/{vendor/predis → predis}/predis/src/Command/KeyPreciseTimeToLive.php +0 -0
  132. dependencies/{vendor/predis → predis}/predis/src/Command/KeyRandom.php +0 -0
  133. dependencies/{vendor/predis → predis}/predis/src/Command/KeyRename.php +0 -0
  134. dependencies/{vendor/predis → predis}/predis/src/Command/KeyRenamePreserve.php +0 -0
  135. dependencies/{vendor/predis → predis}/predis/src/Command/KeyRestore.php +0 -0
  136. dependencies/{vendor/predis → predis}/predis/src/Command/KeyScan.php +0 -0
  137. dependencies/{vendor/predis → predis}/predis/src/Command/KeySort.php +0 -0
  138. dependencies/{vendor/predis → predis}/predis/src/Command/KeyTimeToLive.php +0 -0
  139. dependencies/{vendor/predis → predis}/predis/src/Command/KeyType.php +0 -0
  140. dependencies/{vendor/predis → predis}/predis/src/Command/ListIndex.php +0 -0
  141. dependencies/{vendor/predis → predis}/predis/src/Command/ListInsert.php +0 -0
  142. dependencies/{vendor/predis → predis}/predis/src/Command/ListLength.php +0 -0
  143. dependencies/{vendor/predis → predis}/predis/src/Command/ListPopFirst.php +0 -0
  144. dependencies/{vendor/predis → predis}/predis/src/Command/ListPopFirstBlocking.php +0 -0
  145. dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLast.php +0 -0
  146. dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLastBlocking.php +0 -0
  147. dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLastPushHead.php +0 -0
  148. dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLastPushHeadBlocking.php +0 -0
  149. dependencies/{vendor/predis → predis}/predis/src/Command/ListPushHead.php +0 -0
  150. dependencies/{vendor/predis → predis}/predis/src/Command/ListPushHeadX.php +0 -0
  151. dependencies/{vendor/predis → predis}/predis/src/Command/ListPushTail.php +0 -0
  152. dependencies/{vendor/predis → predis}/predis/src/Command/ListPushTailX.php +0 -0
  153. dependencies/{vendor/predis → predis}/predis/src/Command/ListRange.php +0 -0
  154. dependencies/{vendor/predis → predis}/predis/src/Command/ListRemove.php +0 -0
  155. dependencies/{vendor/predis → predis}/predis/src/Command/ListSet.php +0 -0
  156. dependencies/{vendor/predis → predis}/predis/src/Command/ListTrim.php +0 -0
  157. dependencies/{vendor/predis → predis}/predis/src/Command/PrefixableCommandInterface.php +0 -0
  158. dependencies/{vendor/predis → predis}/predis/src/Command/Processor/KeyPrefixProcessor.php +0 -0
  159. dependencies/{vendor/predis → predis}/predis/src/Command/Processor/ProcessorChain.php +0 -0
  160. dependencies/{vendor/predis → predis}/predis/src/Command/Processor/ProcessorInterface.php +0 -0
  161. dependencies/{vendor/predis → predis}/predis/src/Command/PubSubPublish.php +0 -0
  162. dependencies/{vendor/predis → predis}/predis/src/Command/PubSubPubsub.php +0 -0
  163. dependencies/{vendor/predis → predis}/predis/src/Command/PubSubSubscribe.php +0 -0
  164. dependencies/{vendor/predis → predis}/predis/src/Command/PubSubSubscribeByPattern.php +0 -0
  165. dependencies/{vendor/predis → predis}/predis/src/Command/PubSubUnsubscribe.php +0 -0
  166. dependencies/{vendor/predis → predis}/predis/src/Command/PubSubUnsubscribeByPattern.php +0 -0
  167. dependencies/{vendor/predis → predis}/predis/src/Command/RawCommand.php +0 -0
  168. dependencies/{vendor/predis → predis}/predis/src/Command/ScriptCommand.php +0 -0
  169. dependencies/{vendor/predis → predis}/predis/src/Command/ServerBackgroundRewriteAOF.php +0 -0
  170. dependencies/{vendor/predis → predis}/predis/src/Command/ServerBackgroundSave.php +0 -0
  171. dependencies/{vendor/predis → predis}/predis/src/Command/ServerClient.php +0 -0
  172. dependencies/{vendor/predis → predis}/predis/src/Command/ServerCommand.php +0 -0
  173. dependencies/{vendor/predis → predis}/predis/src/Command/ServerConfig.php +0 -0
  174. dependencies/{vendor/predis → predis}/predis/src/Command/ServerDatabaseSize.php +0 -0
  175. dependencies/{vendor/predis → predis}/predis/src/Command/ServerEval.php +0 -0
  176. dependencies/{vendor/predis → predis}/predis/src/Command/ServerEvalSHA.php +0 -0
  177. dependencies/{vendor/predis → predis}/predis/src/Command/ServerFlushAll.php +0 -0
  178. dependencies/{vendor/predis → predis}/predis/src/Command/ServerFlushDatabase.php +0 -0
  179. dependencies/{vendor/predis → predis}/predis/src/Command/ServerInfo.php +0 -0
  180. dependencies/{vendor/predis → predis}/predis/src/Command/ServerInfoV26x.php +0 -0
  181. dependencies/{vendor/predis → predis}/predis/src/Command/ServerLastSave.php +0 -0
  182. dependencies/{vendor/predis → predis}/predis/src/Command/ServerMonitor.php +0 -0
  183. dependencies/{vendor/predis → predis}/predis/src/Command/ServerObject.php +0 -0
  184. dependencies/{vendor/predis → predis}/predis/src/Command/ServerSave.php +0 -0
  185. dependencies/{vendor/predis → predis}/predis/src/Command/ServerScript.php +0 -0
  186. dependencies/{vendor/predis → predis}/predis/src/Command/ServerSentinel.php +0 -0
  187. dependencies/{vendor/predis → predis}/predis/src/Command/ServerShutdown.php +0 -0
  188. dependencies/{vendor/predis → predis}/predis/src/Command/ServerSlaveOf.php +0 -0
  189. dependencies/{vendor/predis → predis}/predis/src/Command/ServerSlowlog.php +0 -0
  190. dependencies/{vendor/predis → predis}/predis/src/Command/ServerTime.php +0 -0
  191. dependencies/{vendor/predis → predis}/predis/src/Command/SetAdd.php +0 -0
  192. dependencies/{vendor/predis → predis}/predis/src/Command/SetCardinality.php +0 -0
  193. dependencies/{vendor/predis → predis}/predis/src/Command/SetDifference.php +0 -0
  194. dependencies/{vendor/predis → predis}/predis/src/Command/SetDifferenceStore.php +0 -0
  195. dependencies/{vendor/predis → predis}/predis/src/Command/SetIntersection.php +0 -0
  196. dependencies/{vendor/predis → predis}/predis/src/Command/SetIntersectionStore.php +0 -0
  197. dependencies/{vendor/predis → predis}/predis/src/Command/SetIsMember.php +0 -0
  198. dependencies/{vendor/predis → predis}/predis/src/Command/SetMembers.php +0 -0
  199. dependencies/{vendor/predis → predis}/predis/src/Command/SetMove.php +0 -0
  200. dependencies/{vendor/predis → predis}/predis/src/Command/SetPop.php +0 -0
  201. dependencies/{vendor/predis → predis}/predis/src/Command/SetRandomMember.php +0 -0
  202. dependencies/{vendor/predis → predis}/predis/src/Command/SetRemove.php +0 -0
  203. dependencies/{vendor/predis → predis}/predis/src/Command/SetScan.php +0 -0
  204. dependencies/{vendor/predis → predis}/predis/src/Command/SetUnion.php +0 -0
  205. dependencies/{vendor/predis → predis}/predis/src/Command/SetUnionStore.php +0 -0
  206. dependencies/{vendor/predis → predis}/predis/src/Command/StringAppend.php +0 -0
  207. dependencies/{vendor/predis → predis}/predis/src/Command/StringBitCount.php +0 -0
  208. dependencies/{vendor/predis → predis}/predis/src/Command/StringBitField.php +0 -0
  209. dependencies/{vendor/predis → predis}/predis/src/Command/StringBitOp.php +0 -0
  210. dependencies/{vendor/predis → predis}/predis/src/Command/StringBitPos.php +0 -0
  211. dependencies/{vendor/predis → predis}/predis/src/Command/StringDecrement.php +0 -0
  212. dependencies/{vendor/predis → predis}/predis/src/Command/StringDecrementBy.php +0 -0
  213. dependencies/{vendor/predis → predis}/predis/src/Command/StringGet.php +0 -0
  214. dependencies/{vendor/predis → predis}/predis/src/Command/StringGetBit.php +0 -0
  215. dependencies/{vendor/predis → predis}/predis/src/Command/StringGetMultiple.php +0 -0
  216. dependencies/{vendor/predis → predis}/predis/src/Command/StringGetRange.php +0 -0
  217. dependencies/{vendor/predis → predis}/predis/src/Command/StringGetSet.php +0 -0
  218. dependencies/{vendor/predis → predis}/predis/src/Command/StringIncrement.php +0 -0
  219. dependencies/{vendor/predis → predis}/predis/src/Command/StringIncrementBy.php +0 -0
  220. dependencies/{vendor/predis → predis}/predis/src/Command/StringIncrementByFloat.php +0 -0
  221. dependencies/{vendor/predis → predis}/predis/src/Command/StringPreciseSetExpire.php +0 -0
  222. dependencies/{vendor/predis → predis}/predis/src/Command/StringSet.php +0 -0
  223. dependencies/{vendor/predis → predis}/predis/src/Command/StringSetBit.php +0 -0
  224. dependencies/{vendor/predis → predis}/predis/src/Command/StringSetExpire.php +0 -0
  225. dependencies/{vendor/predis → predis}/predis/src/Command/StringSetMultiple.php +0 -0
  226. dependencies/{vendor/predis → predis}/predis/src/Command/StringSetMultiplePreserve.php +0 -0
  227. dependencies/{vendor/predis → predis}/predis/src/Command/StringSetPreserve.php +0 -0
  228. dependencies/{vendor/predis → predis}/predis/src/Command/StringSetRange.php +0 -0
  229. dependencies/{vendor/predis → predis}/predis/src/Command/StringStrlen.php +0 -0
  230. dependencies/{vendor/predis → predis}/predis/src/Command/StringSubstr.php +0 -0
  231. dependencies/{vendor/predis → predis}/predis/src/Command/TransactionDiscard.php +0 -0
  232. dependencies/{vendor/predis → predis}/predis/src/Command/TransactionExec.php +0 -0
  233. dependencies/{vendor/predis → predis}/predis/src/Command/TransactionMulti.php +0 -0
  234. dependencies/{vendor/predis → predis}/predis/src/Command/TransactionUnwatch.php +0 -0
  235. dependencies/{vendor/predis → predis}/predis/src/Command/TransactionWatch.php +0 -0
  236. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetAdd.php +0 -0
  237. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetCardinality.php +0 -0
  238. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetCount.php +0 -0
  239. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetIncrementBy.php +0 -0
  240. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetIntersectionStore.php +0 -0
  241. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetLexCount.php +0 -0
  242. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRange.php +0 -0
  243. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRangeByLex.php +0 -0
  244. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRangeByScore.php +0 -0
  245. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRank.php +0 -0
  246. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemove.php +0 -0
  247. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemoveRangeByLex.php +0 -0
  248. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemoveRangeByRank.php +0 -0
  249. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemoveRangeByScore.php +0 -0
  250. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRange.php +0 -0
  251. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRangeByLex.php +0 -0
  252. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRangeByScore.php +0 -0
  253. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRank.php +0 -0
  254. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetScan.php +0 -0
  255. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetScore.php +0 -0
  256. dependencies/{vendor/predis → predis}/predis/src/Command/ZSetUnionStore.php +0 -0
  257. dependencies/{vendor/predis → predis}/predis/src/CommunicationException.php +0 -0
  258. dependencies/{vendor/predis → predis}/predis/src/Configuration/ClusterOption.php +0 -0
  259. dependencies/{vendor/predis → predis}/predis/src/Configuration/ConnectionFactoryOption.php +0 -0
  260. dependencies/{vendor/predis → predis}/predis/src/Configuration/ExceptionsOption.php +0 -0
  261. dependencies/{vendor/predis → predis}/predis/src/Configuration/OptionInterface.php +0 -0
  262. dependencies/{vendor/predis → predis}/predis/src/Configuration/Options.php +0 -0
  263. dependencies/{vendor/predis → predis}/predis/src/Configuration/OptionsInterface.php +0 -0
  264. dependencies/{vendor/predis → predis}/predis/src/Configuration/PrefixOption.php +0 -0
  265. dependencies/{vendor/predis → predis}/predis/src/Configuration/ProfileOption.php +0 -0
  266. dependencies/{vendor/predis → predis}/predis/src/Configuration/ReplicationOption.php +0 -0
  267. dependencies/{vendor/predis → predis}/predis/src/Connection/AbstractConnection.php +0 -0
  268. dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/ClusterInterface.php +0 -0
  269. dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/MasterSlaveReplication.php +0 -0
  270. dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/PredisCluster.php +0 -0
  271. dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/RedisCluster.php +0 -0
  272. dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/ReplicationInterface.php +0 -0
  273. dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/SentinelReplication.php +0 -0
  274. dependencies/{vendor/predis → predis}/predis/src/Connection/AggregateConnectionInterface.php +0 -0
  275. dependencies/{vendor/predis → predis}/predis/src/Connection/CompositeConnectionInterface.php +0 -0
  276. dependencies/{vendor/predis → predis}/predis/src/Connection/CompositeStreamConnection.php +0 -0
  277. dependencies/{vendor/predis → predis}/predis/src/Connection/ConnectionException.php +0 -0
  278. dependencies/{vendor/predis → predis}/predis/src/Connection/ConnectionInterface.php +0 -0
  279. dependencies/{vendor/predis → predis}/predis/src/Connection/Factory.php +0 -0
  280. dependencies/{vendor/predis → predis}/predis/src/Connection/FactoryInterface.php +0 -0
  281. dependencies/{vendor/predis → predis}/predis/src/Connection/NodeConnectionInterface.php +0 -0
  282. dependencies/{vendor/predis → predis}/predis/src/Connection/Parameters.php +0 -0
  283. dependencies/{vendor/predis → predis}/predis/src/Connection/ParametersInterface.php +0 -0
  284. dependencies/{vendor/predis → predis}/predis/src/Connection/PhpiredisSocketConnection.php +0 -0
  285. dependencies/{vendor/predis → predis}/predis/src/Connection/PhpiredisStreamConnection.php +0 -0
  286. dependencies/{vendor/predis → predis}/predis/src/Connection/StreamConnection.php +0 -0
  287. dependencies/{vendor/predis → predis}/predis/src/Connection/WebdisConnection.php +0 -0
  288. dependencies/{vendor/predis → predis}/predis/src/Monitor/Consumer.php +0 -0
  289. dependencies/{vendor/predis → predis}/predis/src/NotSupportedException.php +0 -0
  290. dependencies/{vendor/predis → predis}/predis/src/Pipeline/Atomic.php +0 -0
  291. dependencies/{vendor/predis → predis}/predis/src/Pipeline/ConnectionErrorProof.php +0 -0
  292. dependencies/{vendor/predis → predis}/predis/src/Pipeline/FireAndForget.php +0 -0
  293. dependencies/{vendor/predis → predis}/predis/src/Pipeline/Pipeline.php +0 -0
  294. dependencies/{vendor/predis → predis}/predis/src/PredisException.php +0 -0
  295. dependencies/{vendor/predis → predis}/predis/src/Profile/Factory.php +0 -0
  296. dependencies/{vendor/predis → predis}/predis/src/Profile/ProfileInterface.php +0 -0
  297. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisProfile.php +0 -0
  298. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisUnstable.php +0 -0
  299. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion200.php +0 -0
  300. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion220.php +0 -0
  301. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion240.php +0 -0
  302. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion260.php +0 -0
  303. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion280.php +0 -0
  304. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion300.php +0 -0
  305. dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion320.php +0 -0
  306. dependencies/{vendor/predis → predis}/predis/src/Protocol/ProtocolException.php +0 -0
  307. dependencies/{vendor/predis → predis}/predis/src/Protocol/ProtocolProcessorInterface.php +0 -0
  308. dependencies/{vendor/predis → predis}/predis/src/Protocol/RequestSerializerInterface.php +0 -0
  309. dependencies/{vendor/predis → predis}/predis/src/Protocol/ResponseReaderInterface.php +0 -0
  310. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/CompositeProtocolProcessor.php +0 -0
  311. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/BulkResponse.php +0 -0
  312. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/ErrorResponse.php +0 -0
  313. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/IntegerResponse.php +0 -0
  314. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/MultiBulkResponse.php +0 -0
  315. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/ResponseHandlerInterface.php +0 -0
  316. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/StatusResponse.php +0 -0
  317. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php +0 -0
  318. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/ProtocolProcessor.php +0 -0
  319. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/RequestSerializer.php +0 -0
  320. dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/ResponseReader.php +0 -0
  321. dependencies/{vendor/predis → predis}/predis/src/PubSub/AbstractConsumer.php +0 -0
  322. dependencies/{vendor/predis → predis}/predis/src/PubSub/Consumer.php +0 -0
  323. dependencies/{vendor/predis → predis}/predis/src/PubSub/DispatcherLoop.php +0 -0
  324. dependencies/{vendor/predis → predis}/predis/src/Replication/MissingMasterException.php +0 -0
  325. dependencies/{vendor/predis → predis}/predis/src/Replication/ReplicationStrategy.php +0 -0
  326. dependencies/{vendor/predis → predis}/predis/src/Replication/RoleException.php +0 -0
  327. dependencies/{vendor/predis → predis}/predis/src/Response/Error.php +0 -0
  328. dependencies/{vendor/predis → predis}/predis/src/Response/ErrorInterface.php +0 -0
  329. dependencies/{vendor/predis → predis}/predis/src/Response/Iterator/MultiBulk.php +0 -0
  330. dependencies/{vendor/predis → predis}/predis/src/Response/Iterator/MultiBulkIterator.php +0 -0
  331. dependencies/{vendor/predis → predis}/predis/src/Response/Iterator/MultiBulkTuple.php +0 -0
  332. dependencies/{vendor/predis → predis}/predis/src/Response/ResponseInterface.php +0 -0
  333. dependencies/{vendor/predis → predis}/predis/src/Response/ServerException.php +0 -0
  334. dependencies/{vendor/predis → predis}/predis/src/Response/Status.php +0 -0
  335. dependencies/{vendor/predis → predis}/predis/src/Session/Handler.php +0 -0
  336. dependencies/{vendor/predis → predis}/predis/src/Transaction/AbortedMultiExecException.php +0 -0
  337. dependencies/{vendor/predis → predis}/predis/src/Transaction/MultiExec.php +0 -0
  338. dependencies/{vendor/predis → predis}/predis/src/Transaction/MultiExecState.php +0 -0
  339. dependencies/vendor/autoload.php +0 -7
  340. dependencies/vendor/composer/ClassLoader.php +0 -445
  341. dependencies/vendor/composer/LICENSE +0 -56
  342. dependencies/vendor/composer/autoload_classmap.php +0 -14
  343. dependencies/vendor/composer/autoload_namespaces.php +0 -9
  344. dependencies/vendor/composer/autoload_psr4.php +0 -10
  345. dependencies/vendor/composer/autoload_real.php +0 -52
  346. dependencies/vendor/composer/autoload_static.php +0 -40
  347. dependencies/vendor/composer/installed.json +0 -96
  348. dependencies/vendor/predis/predis/autoload.php +4 -10
  349. includes/class-plugin.php +42 -9
  350. includes/class-qm-collector.php +7 -0
  351. includes/object-cache.php +10 -7
  352. includes/ui/diagnostics.php +2 -2
  353. includes/ui/settings.php +25 -0
  354. includes/ui/tabs/overview.php +20 -7
  355. readme.txt +20 -1
  356. redis-cache.php +1 -1
assets/css/admin.css CHANGED
@@ -56,6 +56,10 @@
56
  width: 100%;
57
  }
58
 
 
 
 
 
59
  #rediscache .compatiblity {
60
  display: flex;
61
  max-width: 520px;
56
  width: 100%;
57
  }
58
 
59
+ #rediscache .section-support {
60
+ margin-top: 3em;
61
+ }
62
+
63
  #rediscache .compatiblity {
64
  display: flex;
65
  max-width: 520px;
dependencies/colinmollenhour/credis/.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ .idea
2
+ vendor
3
+ phpunit.phar
4
+ phpunit_*.log
dependencies/colinmollenhour/credis/.travis.yml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language: php
2
+
3
+ matrix:
4
+ include:
5
+ - php: 5.6
6
+ env:
7
+ - PHPREDIS_VERSION=redis-4.3.0
8
+ - PHPUNIT_VERSION=^5.7
9
+ - php: 7.0
10
+ env:
11
+ - PHPREDIS_VERSION=redis-5.0.0
12
+ - PHPUNIT_VERSION=^6.4
13
+ - php: 7.1
14
+ env:
15
+ - PHPREDIS_VERSION=redis-5.0.0
16
+ - PHPUNIT_VERSION=^6.4
17
+ - php: 7.2
18
+ env:
19
+ - PHPREDIS_VERSION=redis-5.0.0
20
+ - PHPUNIT_VERSION=^7.5
21
+ - php: 7.3
22
+ env:
23
+ - PHPREDIS_VERSION=redis-5.0.0
24
+ - PHPUNIT_VERSION=^7.5
25
+
26
+ install:
27
+ - yes '' | pecl install -f $PHPREDIS_VERSION
28
+ - wget http://download.redis.io/releases/redis-5.0.5.tar.gz
29
+ - tar -xzf redis-5.0.5.tar.gz
30
+ - make -s -C redis-5.0.5 -j4
31
+ - export PATH=$PATH:$PWD/redis-5.0.5/src/
32
+ - |
33
+ if [ ! -z "$PHPUNIT_VERSION" ]; then
34
+ composer require "phpunit/phpunit:${PHPUNIT_VERSION}" --dev --no-update -n
35
+ composer install --dev -n
36
+ fi
37
+
38
+ script:
39
+ - vendor/bin/phpunit
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Client.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Cluster.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/LICENSE RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Module.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/README.markdown RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/Sentinel.php RENAMED
File without changes
dependencies/colinmollenhour/credis/composer.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "colinmollenhour/credis",
3
+ "type": "library",
4
+ "description": "Credis is a lightweight interface to the Redis key-value store which wraps the phpredis library when available for better performance.",
5
+ "homepage": "https://github.com/colinmollenhour/credis",
6
+ "license": "MIT",
7
+ "authors": [
8
+ {
9
+ "name": "Colin Mollenhour",
10
+ "email": "colin@mollenhour.com"
11
+ }
12
+ ],
13
+ "require": {
14
+ "php": ">=5.4.0"
15
+ },
16
+ "autoload": {
17
+ "classmap": [
18
+ "Client.php",
19
+ "Cluster.php",
20
+ "Sentinel.php",
21
+ "Module.php"
22
+ ]
23
+ }
24
+ }
dependencies/colinmollenhour/credis/phpunit.xml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <phpunit colors="true" verbose="true">
3
+ <testsuites>
4
+ <testsuite name="Basic">
5
+ <file>tests/CredisTest.php</file>
6
+ <file>tests/CredisStandaloneTest.php</file>
7
+ </testsuite>
8
+ <testsuite name="Cluster">
9
+ <file>tests/CredisClusterTest.php</file>
10
+ <file>tests/CredisStandaloneClusterTest.php</file>
11
+ </testsuite>
12
+ <testsuite name="Sentinel">
13
+ <file>tests/CredisSentinelTest.php</file>
14
+ <file>tests/CredisStandaloneSentinelTest.php</file>
15
+ </testsuite>
16
+ </testsuites>
17
+ </phpunit>
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/phpunit_local.sh RENAMED
File without changes
dependencies/colinmollenhour/credis/testenv/docker-compose.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '2'
2
+ services:
3
+
4
+ php-55:
5
+ build: env/php-5.5/
6
+ volumes:
7
+ - ../:/src/
8
+
9
+ php-56:
10
+ build: env/php-5.6/
11
+ volumes:
12
+ - ../:/src/
13
+
14
+ php-70:
15
+ build: env/php-7.0/
16
+ volumes:
17
+ - ../:/src/
18
+
19
+ php-71:
20
+ build: env/php-7.1/
21
+ volumes:
22
+ - ../:/src/
23
+
24
+ php-72:
25
+ build: env/php-7.2/
26
+ volumes:
27
+ - ../:/src/
28
+
29
+ php-73:
30
+ build: env/php-7.3/
31
+ volumes:
32
+ - ../:/src/
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-5.5/Dockerfile RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-5.6/Dockerfile RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.0/Dockerfile RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.1/Dockerfile RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.2/Dockerfile RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/testenv/env/php-7.3/Dockerfile RENAMED
File without changes
dependencies/colinmollenhour/credis/tests/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ *.pid
2
+ *.rdb
3
+ _reports/*
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisClusterTest.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisSentinelTest.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisStandaloneClusterTest.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisStandaloneSentinelTest.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisStandaloneTest.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisTest.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/CredisTestCommon.php RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/keys.test RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-2.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-3.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-4.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-auth.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-master.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-sentinel.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-slave.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis-socket.conf RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/redis_config.json RENAMED
File without changes
dependencies/{vendor/colinmollenhour → colinmollenhour}/credis/tests/sentinel_config.json RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/CHANGELOG.md RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/CONTRIBUTING.md RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/FAQ.md RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/LICENSE RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/README.md RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/VERSION RENAMED
File without changes
dependencies/predis/predis/autoload.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Predis package.
5
+ *
6
+ * (c) Daniele Alessandri <suppakilla@gmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ require __DIR__.'/src/Autoloader.php';
13
+
14
+ Predis\Autoloader::register();
dependencies/{vendor/predis → predis}/predis/bin/create-command-test RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/bin/create-pear RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/bin/create-phar RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/bin/create-single-file RENAMED
File without changes
dependencies/predis/predis/composer.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "predis/predis",
3
+ "type": "library",
4
+ "description": "Flexible and feature-complete Redis client for PHP and HHVM",
5
+ "keywords": ["nosql", "redis", "predis"],
6
+ "homepage": "http://github.com/nrk/predis",
7
+ "license": "MIT",
8
+ "support": {
9
+ "issues": "https://github.com/nrk/predis/issues"
10
+ },
11
+ "authors": [
12
+ {
13
+ "name": "Daniele Alessandri",
14
+ "email": "suppakilla@gmail.com",
15
+ "homepage": "http://clorophilla.net"
16
+ }
17
+ ],
18
+ "require": {
19
+ "php": ">=5.3.9"
20
+ },
21
+ "require-dev": {
22
+ "phpunit/phpunit": "~4.8"
23
+ },
24
+ "suggest": {
25
+ "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
26
+ "ext-curl": "Allows access to Webdis when paired with phpiredis"
27
+ },
28
+ "autoload": {
29
+ "psr-4": {"Predis\\": "src/"}
30
+ }
31
+ }
dependencies/{vendor/predis → predis}/predis/examples/custom_cluster_distributor.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/debuggable_connection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/dispatcher_loop.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/executing_redis_commands.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/key_prefixing.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/lua_scripting_abstraction.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/monitor_consumer.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/pipelining_commands.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/pubsub_consumer.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/redis_collections_iterators.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/replication_complex.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/replication_sentinel.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/replication_simple.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/session_handler.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/shared.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/examples/transaction_using_cas.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/package.ini RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Autoloader.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Client.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/ClientContextInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/ClientException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/ClientInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/ClusterStrategy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/DistributorInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/EmptyRingException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/HashRing.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/Distributor/KetamaRing.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/Hash/CRC16.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/Hash/HashGeneratorInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/PredisStrategy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/RedisStrategy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Cluster/StrategyInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/CursorBasedIterator.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/HashKey.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/Keyspace.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/ListKey.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/SetKey.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Collection/Iterator/SortedSetKey.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/Command.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/CommandInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionAuth.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionEcho.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionPing.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionQuit.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ConnectionSelect.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoAdd.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoDist.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoHash.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoPos.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoRadius.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/GeospatialGeoRadiusByMember.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashDelete.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashExists.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashGet.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashGetAll.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashGetMultiple.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashIncrementBy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashIncrementByFloat.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashKeys.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashLength.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashScan.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashSet.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashSetMultiple.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashSetPreserve.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashStringLength.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HashValues.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HyperLogLogAdd.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HyperLogLogCount.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/HyperLogLogMerge.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyDelete.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyDump.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyExists.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyExpire.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyExpireAt.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyKeys.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyMigrate.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyMove.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyPersist.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyPreciseExpire.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyPreciseExpireAt.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyPreciseTimeToLive.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyRandom.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyRename.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyRenamePreserve.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyRestore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyScan.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeySort.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyTimeToLive.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/KeyType.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListIndex.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListInsert.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListLength.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPopFirst.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPopFirstBlocking.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLast.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLastBlocking.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLastPushHead.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPopLastPushHeadBlocking.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPushHead.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPushHeadX.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPushTail.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListPushTailX.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListRange.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListRemove.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListSet.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ListTrim.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PrefixableCommandInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/Processor/KeyPrefixProcessor.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/Processor/ProcessorChain.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/Processor/ProcessorInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PubSubPublish.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PubSubPubsub.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PubSubSubscribe.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PubSubSubscribeByPattern.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PubSubUnsubscribe.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/PubSubUnsubscribeByPattern.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/RawCommand.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ScriptCommand.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerBackgroundRewriteAOF.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerBackgroundSave.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerClient.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerCommand.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerConfig.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerDatabaseSize.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerEval.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerEvalSHA.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerFlushAll.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerFlushDatabase.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerInfo.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerInfoV26x.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerLastSave.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerMonitor.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerObject.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerSave.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerScript.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerSentinel.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerShutdown.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerSlaveOf.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerSlowlog.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ServerTime.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetAdd.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetCardinality.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetDifference.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetDifferenceStore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetIntersection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetIntersectionStore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetIsMember.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetMembers.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetMove.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetPop.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetRandomMember.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetRemove.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetScan.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetUnion.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/SetUnionStore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringAppend.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringBitCount.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringBitField.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringBitOp.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringBitPos.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringDecrement.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringDecrementBy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringGet.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringGetBit.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringGetMultiple.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringGetRange.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringGetSet.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringIncrement.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringIncrementBy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringIncrementByFloat.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringPreciseSetExpire.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSet.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSetBit.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSetExpire.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSetMultiple.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSetMultiplePreserve.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSetPreserve.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSetRange.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringStrlen.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/StringSubstr.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/TransactionDiscard.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/TransactionExec.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/TransactionMulti.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/TransactionUnwatch.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/TransactionWatch.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetAdd.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetCardinality.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetCount.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetIncrementBy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetIntersectionStore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetLexCount.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRange.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRangeByLex.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRangeByScore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRank.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemove.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemoveRangeByLex.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemoveRangeByRank.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetRemoveRangeByScore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRange.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRangeByLex.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRangeByScore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetReverseRank.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetScan.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetScore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Command/ZSetUnionStore.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/CommunicationException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/ClusterOption.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/ConnectionFactoryOption.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/ExceptionsOption.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/OptionInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/Options.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/OptionsInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/PrefixOption.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/ProfileOption.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Configuration/ReplicationOption.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/AbstractConnection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/ClusterInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/MasterSlaveReplication.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/PredisCluster.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/RedisCluster.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/ReplicationInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Aggregate/SentinelReplication.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/AggregateConnectionInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/CompositeConnectionInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/CompositeStreamConnection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/ConnectionException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/ConnectionInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Factory.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/FactoryInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/NodeConnectionInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/Parameters.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/ParametersInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/PhpiredisSocketConnection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/PhpiredisStreamConnection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/StreamConnection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Connection/WebdisConnection.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Monitor/Consumer.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/NotSupportedException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Pipeline/Atomic.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Pipeline/ConnectionErrorProof.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Pipeline/FireAndForget.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Pipeline/Pipeline.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/PredisException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/Factory.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/ProfileInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisProfile.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisUnstable.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion200.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion220.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion240.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion260.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion280.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion300.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Profile/RedisVersion320.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/ProtocolException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/ProtocolProcessorInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/RequestSerializerInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/ResponseReaderInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/CompositeProtocolProcessor.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/BulkResponse.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/ErrorResponse.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/IntegerResponse.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/MultiBulkResponse.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/ResponseHandlerInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/StatusResponse.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/Handler/StreamableMultiBulkResponse.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/ProtocolProcessor.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/RequestSerializer.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Protocol/Text/ResponseReader.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/PubSub/AbstractConsumer.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/PubSub/Consumer.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/PubSub/DispatcherLoop.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Replication/MissingMasterException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Replication/ReplicationStrategy.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Replication/RoleException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/Error.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/ErrorInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/Iterator/MultiBulk.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/Iterator/MultiBulkIterator.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/Iterator/MultiBulkTuple.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/ResponseInterface.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/ServerException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Response/Status.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Session/Handler.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Transaction/AbortedMultiExecException.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Transaction/MultiExec.php RENAMED
File without changes
dependencies/{vendor/predis → predis}/predis/src/Transaction/MultiExecState.php RENAMED
File without changes
dependencies/vendor/autoload.php DELETED
@@ -1,7 +0,0 @@
1
- <?php
2
-
3
- // autoload.php @generated by Composer
4
-
5
- require_once __DIR__ . '/composer/autoload_real.php';
6
-
7
- return ComposerAutoloaderInitf354a0cd352f791551260eb9a7611c7a::getLoader();
 
 
 
 
 
 
 
dependencies/vendor/composer/ClassLoader.php DELETED
@@ -1,445 +0,0 @@
1
- <?php
2
-
3
- /*
4
- * This file is part of Composer.
5
- *
6
- * (c) Nils Adermann <naderman@naderman.de>
7
- * Jordi Boggiano <j.boggiano@seld.be>
8
- *
9
- * For the full copyright and license information, please view the LICENSE
10
- * file that was distributed with this source code.
11
- */
12
-
13
- namespace Composer\Autoload;
14
-
15
- /**
16
- * ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
17
- *
18
- * $loader = new \Composer\Autoload\ClassLoader();
19
- *
20
- * // register classes with namespaces
21
- * $loader->add('Symfony\Component', __DIR__.'/component');
22
- * $loader->add('Symfony', __DIR__.'/framework');
23
- *
24
- * // activate the autoloader
25
- * $loader->register();
26
- *
27
- * // to enable searching the include path (eg. for PEAR packages)
28
- * $loader->setUseIncludePath(true);
29
- *
30
- * In this example, if you try to use a class in the Symfony\Component
31
- * namespace or one of its children (Symfony\Component\Console for instance),
32
- * the autoloader will first look for the class under the component/
33
- * directory, and it will then fallback to the framework/ directory if not
34
- * found before giving up.
35
- *
36
- * This class is loosely based on the Symfony UniversalClassLoader.
37
- *
38
- * @author Fabien Potencier <fabien@symfony.com>
39
- * @author Jordi Boggiano <j.boggiano@seld.be>
40
- * @see http://www.php-fig.org/psr/psr-0/
41
- * @see http://www.php-fig.org/psr/psr-4/
42
- */
43
- class ClassLoader
44
- {
45
- // PSR-4
46
- private $prefixLengthsPsr4 = array();
47
- private $prefixDirsPsr4 = array();
48
- private $fallbackDirsPsr4 = array();
49
-
50
- // PSR-0
51
- private $prefixesPsr0 = array();
52
- private $fallbackDirsPsr0 = array();
53
-
54
- private $useIncludePath = false;
55
- private $classMap = array();
56
- private $classMapAuthoritative = false;
57
- private $missingClasses = array();
58
- private $apcuPrefix;
59
-
60
- public function getPrefixes()
61
- {
62
- if (!empty($this->prefixesPsr0)) {
63
- return call_user_func_array('array_merge', $this->prefixesPsr0);
64
- }
65
-
66
- return array();
67
- }
68
-
69
- public function getPrefixesPsr4()
70
- {
71
- return $this->prefixDirsPsr4;
72
- }
73
-
74
- public function getFallbackDirs()
75
- {
76
- return $this->fallbackDirsPsr0;
77
- }
78
-
79
- public function getFallbackDirsPsr4()
80
- {
81
- return $this->fallbackDirsPsr4;
82
- }
83
-
84
- public function getClassMap()
85
- {
86
- return $this->classMap;
87
- }
88
-
89
- /**
90
- * @param array $classMap Class to filename map
91
- */
92
- public function addClassMap(array $classMap)
93
- {
94
- if ($this->classMap) {
95
- $this->classMap = array_merge($this->classMap, $classMap);
96
- } else {
97
- $this->classMap = $classMap;
98
- }
99
- }
100
-
101
- /**
102
- * Registers a set of PSR-0 directories for a given prefix, either
103
- * appending or prepending to the ones previously set for this prefix.
104
- *
105
- * @param string $prefix The prefix
106
- * @param array|string $paths The PSR-0 root directories
107
- * @param bool $prepend Whether to prepend the directories
108
- */
109
- public function add($prefix, $paths, $prepend = false)
110
- {
111
- if (!$prefix) {
112
- if ($prepend) {
113
- $this->fallbackDirsPsr0 = array_merge(
114
- (array) $paths,
115
- $this->fallbackDirsPsr0
116
- );
117
- } else {
118
- $this->fallbackDirsPsr0 = array_merge(
119
- $this->fallbackDirsPsr0,
120
- (array) $paths
121
- );
122
- }
123
-
124
- return;
125
- }
126
-
127
- $first = $prefix[0];
128
- if (!isset($this->prefixesPsr0[$first][$prefix])) {
129
- $this->prefixesPsr0[$first][$prefix] = (array) $paths;
130
-
131
- return;
132
- }
133
- if ($prepend) {
134
- $this->prefixesPsr0[$first][$prefix] = array_merge(
135
- (array) $paths,
136
- $this->prefixesPsr0[$first][$prefix]
137
- );
138
- } else {
139
- $this->prefixesPsr0[$first][$prefix] = array_merge(
140
- $this->prefixesPsr0[$first][$prefix],
141
- (array) $paths
142
- );
143
- }
144
- }
145
-
146
- /**
147
- * Registers a set of PSR-4 directories for a given namespace, either
148
- * appending or prepending to the ones previously set for this namespace.
149
- *
150
- * @param string $prefix The prefix/namespace, with trailing '\\'
151
- * @param array|string $paths The PSR-4 base directories
152
- * @param bool $prepend Whether to prepend the directories
153
- *
154
- * @throws \InvalidArgumentException
155
- */
156
- public function addPsr4($prefix, $paths, $prepend = false)
157
- {
158
- if (!$prefix) {
159
- // Register directories for the root namespace.
160
- if ($prepend) {
161
- $this->fallbackDirsPsr4 = array_merge(
162
- (array) $paths,
163
- $this->fallbackDirsPsr4
164
- );
165
- } else {
166
- $this->fallbackDirsPsr4 = array_merge(
167
- $this->fallbackDirsPsr4,
168
- (array) $paths
169
- );
170
- }
171
- } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
172
- // Register directories for a new namespace.
173
- $length = strlen($prefix);
174
- if ('\\' !== $prefix[$length - 1]) {
175
- throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
176
- }
177
- $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
178
- $this->prefixDirsPsr4[$prefix] = (array) $paths;
179
- } elseif ($prepend) {
180
- // Prepend directories for an already registered namespace.
181
- $this->prefixDirsPsr4[$prefix] = array_merge(
182
- (array) $paths,
183
- $this->prefixDirsPsr4[$prefix]
184
- );
185
- } else {
186
- // Append directories for an already registered namespace.
187
- $this->prefixDirsPsr4[$prefix] = array_merge(
188
- $this->prefixDirsPsr4[$prefix],
189
- (array) $paths
190
- );
191
- }
192
- }
193
-
194
- /**
195
- * Registers a set of PSR-0 directories for a given prefix,
196
- * replacing any others previously set for this prefix.
197
- *
198
- * @param string $prefix The prefix
199
- * @param array|string $paths The PSR-0 base directories
200
- */
201
- public function set($prefix, $paths)
202
- {
203
- if (!$prefix) {
204
- $this->fallbackDirsPsr0 = (array) $paths;
205
- } else {
206
- $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
207
- }
208
- }
209
-
210
- /**
211
- * Registers a set of PSR-4 directories for a given namespace,
212
- * replacing any others previously set for this namespace.
213
- *
214
- * @param string $prefix The prefix/namespace, with trailing '\\'
215
- * @param array|string $paths The PSR-4 base directories
216
- *
217
- * @throws \InvalidArgumentException
218
- */
219
- public function setPsr4($prefix, $paths)
220
- {
221
- if (!$prefix) {
222
- $this->fallbackDirsPsr4 = (array) $paths;
223
- } else {
224
- $length = strlen($prefix);
225
- if ('\\' !== $prefix[$length - 1]) {
226
- throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
227
- }
228
- $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
229
- $this->prefixDirsPsr4[$prefix] = (array) $paths;
230
- }
231
- }
232
-
233
- /**
234
- * Turns on searching the include path for class files.
235
- *
236
- * @param bool $useIncludePath
237
- */
238
- public function setUseIncludePath($useIncludePath)
239
- {
240
- $this->useIncludePath = $useIncludePath;
241
- }
242
-
243
- /**
244
- * Can be used to check if the autoloader uses the include path to check
245
- * for classes.
246
- *
247
- * @return bool
248
- */
249
- public function getUseIncludePath()
250
- {
251
- return $this->useIncludePath;
252
- }
253
-
254
- /**
255
- * Turns off searching the prefix and fallback directories for classes
256
- * that have not been registered with the class map.
257
- *
258
- * @param bool $classMapAuthoritative
259
- */
260
- public function setClassMapAuthoritative($classMapAuthoritative)
261
- {
262
- $this->classMapAuthoritative = $classMapAuthoritative;
263
- }
264
-
265
- /**
266
- * Should class lookup fail if not found in the current class map?
267
- *
268
- * @return bool
269
- */
270
- public function isClassMapAuthoritative()
271
- {
272
- return $this->classMapAuthoritative;
273
- }
274
-
275
- /**
276
- * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
277
- *
278
- * @param string|null $apcuPrefix
279
- */
280
- public function setApcuPrefix($apcuPrefix)
281
- {
282
- $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
283
- }
284
-
285
- /**
286
- * The APCu prefix in use, or null if APCu caching is not enabled.
287
- *
288
- * @return string|null
289
- */
290
- public function getApcuPrefix()
291
- {
292
- return $this->apcuPrefix;
293
- }
294
-
295
- /**
296
- * Registers this instance as an autoloader.
297
- *
298
- * @param bool $prepend Whether to prepend the autoloader or not
299
- */
300
- public function register($prepend = false)
301
- {
302
- spl_autoload_register(array($this, 'loadClass'), true, $prepend);
303
- }
304
-
305
- /**
306
- * Unregisters this instance as an autoloader.
307
- */
308
- public function unregister()
309
- {
310
- spl_autoload_unregister(array($this, 'loadClass'));
311
- }
312
-
313
- /**
314
- * Loads the given class or interface.
315
- *
316
- * @param string $class The name of the class
317
- * @return bool|null True if loaded, null otherwise
318
- */
319
- public function loadClass($class)
320
- {
321
- if ($file = $this->findFile($class)) {
322
- includeFile($file);
323
-
324
- return true;
325
- }
326
- }
327
-
328
- /**
329
- * Finds the path to the file where the class is defined.
330
- *
331
- * @param string $class The name of the class
332
- *
333
- * @return string|false The path if found, false otherwise
334
- */
335
- public function findFile($class)
336
- {
337
- // class map lookup
338
- if (isset($this->classMap[$class])) {
339
- return $this->classMap[$class];
340
- }
341
- if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
342
- return false;
343
- }
344
- if (null !== $this->apcuPrefix) {
345
- $file = apcu_fetch($this->apcuPrefix.$class, $hit);
346
- if ($hit) {
347
- return $file;
348
- }
349
- }
350
-
351
- $file = $this->findFileWithExtension($class, '.php');
352
-
353
- // Search for Hack files if we are running on HHVM
354
- if (false === $file && defined('HHVM_VERSION')) {
355
- $file = $this->findFileWithExtension($class, '.hh');
356
- }
357
-
358
- if (null !== $this->apcuPrefix) {
359
- apcu_add($this->apcuPrefix.$class, $file);
360
- }
361
-
362
- if (false === $file) {
363
- // Remember that this class does not exist.
364
- $this->missingClasses[$class] = true;
365
- }
366
-
367
- return $file;
368
- }
369
-
370
- private function findFileWithExtension($class, $ext)
371
- {
372
- // PSR-4 lookup
373
- $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
374
-
375
- $first = $class[0];
376
- if (isset($this->prefixLengthsPsr4[$first])) {
377
- $subPath = $class;
378
- while (false !== $lastPos = strrpos($subPath, '\\')) {
379
- $subPath = substr($subPath, 0, $lastPos);
380
- $search = $subPath.'\\';
381
- if (isset($this->prefixDirsPsr4[$search])) {
382
- $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
383
- foreach ($this->prefixDirsPsr4[$search] as $dir) {
384
- if (file_exists($file = $dir . $pathEnd)) {
385
- return $file;
386
- }
387
- }
388
- }
389
- }
390
- }
391
-
392
- // PSR-4 fallback dirs
393
- foreach ($this->fallbackDirsPsr4 as $dir) {
394
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
395
- return $file;
396
- }
397
- }
398
-
399
- // PSR-0 lookup
400
- if (false !== $pos = strrpos($class, '\\')) {
401
- // namespaced class name
402
- $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
403
- . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
404
- } else {
405
- // PEAR-like class name
406
- $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
407
- }
408
-
409
- if (isset($this->prefixesPsr0[$first])) {
410
- foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
411
- if (0 === strpos($class, $prefix)) {
412
- foreach ($dirs as $dir) {
413
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
414
- return $file;
415
- }
416
- }
417
- }
418
- }
419
- }
420
-
421
- // PSR-0 fallback dirs
422
- foreach ($this->fallbackDirsPsr0 as $dir) {
423
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
424
- return $file;
425
- }
426
- }
427
-
428
- // PSR-0 include paths.
429
- if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
430
- return $file;
431
- }
432
-
433
- return false;
434
- }
435
- }
436
-
437
- /**
438
- * Scope isolated include.
439
- *
440
- * Prevents access to $this/self from included files.
441
- */
442
- function includeFile($file)
443
- {
444
- include $file;
445
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/LICENSE DELETED
@@ -1,56 +0,0 @@
1
- Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
- Upstream-Name: Composer
3
- Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
4
- Source: https://github.com/composer/composer
5
-
6
- Files: *
7
- Copyright: 2016, Nils Adermann <naderman@naderman.de>
8
- 2016, Jordi Boggiano <j.boggiano@seld.be>
9
- License: Expat
10
-
11
- Files: src/Composer/Util/TlsHelper.php
12
- Copyright: 2016, Nils Adermann <naderman@naderman.de>
13
- 2016, Jordi Boggiano <j.boggiano@seld.be>
14
- 2013, Evan Coury <me@evancoury.com>
15
- License: Expat and BSD-2-Clause
16
-
17
- License: BSD-2-Clause
18
- Redistribution and use in source and binary forms, with or without modification,
19
- are permitted provided that the following conditions are met:
20
- .
21
- * Redistributions of source code must retain the above copyright notice,
22
- this list of conditions and the following disclaimer.
23
- .
24
- * Redistributions in binary form must reproduce the above copyright notice,
25
- this list of conditions and the following disclaimer in the documentation
26
- and/or other materials provided with the distribution.
27
- .
28
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
29
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
32
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
33
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
34
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
35
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38
-
39
- License: Expat
40
- Permission is hereby granted, free of charge, to any person obtaining a copy
41
- of this software and associated documentation files (the "Software"), to deal
42
- in the Software without restriction, including without limitation the rights
43
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
44
- copies of the Software, and to permit persons to whom the Software is furnished
45
- to do so, subject to the following conditions:
46
- .
47
- The above copyright notice and this permission notice shall be included in all
48
- copies or substantial portions of the Software.
49
- .
50
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
51
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
52
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
53
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
54
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
55
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
56
- THE SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/autoload_classmap.php DELETED
@@ -1,14 +0,0 @@
1
- <?php
2
-
3
- // autoload_classmap.php @generated by Composer
4
-
5
- $vendorDir = dirname(dirname(__FILE__));
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- 'CredisException' => $vendorDir . '/colinmollenhour/credis/Client.php',
10
- 'Credis_Client' => $vendorDir . '/colinmollenhour/credis/Client.php',
11
- 'Credis_Cluster' => $vendorDir . '/colinmollenhour/credis/Cluster.php',
12
- 'Credis_Module' => $vendorDir . '/colinmollenhour/credis/Module.php',
13
- 'Credis_Sentinel' => $vendorDir . '/colinmollenhour/credis/Sentinel.php',
14
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/autoload_namespaces.php DELETED
@@ -1,9 +0,0 @@
1
- <?php
2
-
3
- // autoload_namespaces.php @generated by Composer
4
-
5
- $vendorDir = dirname(dirname(__FILE__));
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- );
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/autoload_psr4.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- // autoload_psr4.php @generated by Composer
4
-
5
- $vendorDir = dirname(dirname(__FILE__));
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- 'Predis\\' => array($vendorDir . '/predis/predis/src'),
10
- );
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/autoload_real.php DELETED
@@ -1,52 +0,0 @@
1
- <?php
2
-
3
- // autoload_real.php @generated by Composer
4
-
5
- class ComposerAutoloaderInitf354a0cd352f791551260eb9a7611c7a
6
- {
7
- private static $loader;
8
-
9
- public static function loadClassLoader($class)
10
- {
11
- if ('Composer\Autoload\ClassLoader' === $class) {
12
- require __DIR__ . '/ClassLoader.php';
13
- }
14
- }
15
-
16
- public static function getLoader()
17
- {
18
- if (null !== self::$loader) {
19
- return self::$loader;
20
- }
21
-
22
- spl_autoload_register(array('ComposerAutoloaderInitf354a0cd352f791551260eb9a7611c7a', 'loadClassLoader'), true, true);
23
- self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitf354a0cd352f791551260eb9a7611c7a', 'loadClassLoader'));
25
-
26
- $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
- if ($useStaticLoader) {
28
- require_once __DIR__ . '/autoload_static.php';
29
-
30
- call_user_func(\Composer\Autoload\ComposerStaticInitf354a0cd352f791551260eb9a7611c7a::getInitializer($loader));
31
- } else {
32
- $map = require __DIR__ . '/autoload_namespaces.php';
33
- foreach ($map as $namespace => $path) {
34
- $loader->set($namespace, $path);
35
- }
36
-
37
- $map = require __DIR__ . '/autoload_psr4.php';
38
- foreach ($map as $namespace => $path) {
39
- $loader->setPsr4($namespace, $path);
40
- }
41
-
42
- $classMap = require __DIR__ . '/autoload_classmap.php';
43
- if ($classMap) {
44
- $loader->addClassMap($classMap);
45
- }
46
- }
47
-
48
- $loader->register(true);
49
-
50
- return $loader;
51
- }
52
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/autoload_static.php DELETED
@@ -1,40 +0,0 @@
1
- <?php
2
-
3
- // autoload_static.php @generated by Composer
4
-
5
- namespace Composer\Autoload;
6
-
7
- class ComposerStaticInitf354a0cd352f791551260eb9a7611c7a
8
- {
9
- public static $prefixLengthsPsr4 = array (
10
- 'P' =>
11
- array (
12
- 'Predis\\' => 7,
13
- ),
14
- );
15
-
16
- public static $prefixDirsPsr4 = array (
17
- 'Predis\\' =>
18
- array (
19
- 0 => __DIR__ . '/..' . '/predis/predis/src',
20
- ),
21
- );
22
-
23
- public static $classMap = array (
24
- 'CredisException' => __DIR__ . '/..' . '/colinmollenhour/credis/Client.php',
25
- 'Credis_Client' => __DIR__ . '/..' . '/colinmollenhour/credis/Client.php',
26
- 'Credis_Cluster' => __DIR__ . '/..' . '/colinmollenhour/credis/Cluster.php',
27
- 'Credis_Module' => __DIR__ . '/..' . '/colinmollenhour/credis/Module.php',
28
- 'Credis_Sentinel' => __DIR__ . '/..' . '/colinmollenhour/credis/Sentinel.php',
29
- );
30
-
31
- public static function getInitializer(ClassLoader $loader)
32
- {
33
- return \Closure::bind(function () use ($loader) {
34
- $loader->prefixLengthsPsr4 = ComposerStaticInitf354a0cd352f791551260eb9a7611c7a::$prefixLengthsPsr4;
35
- $loader->prefixDirsPsr4 = ComposerStaticInitf354a0cd352f791551260eb9a7611c7a::$prefixDirsPsr4;
36
- $loader->classMap = ComposerStaticInitf354a0cd352f791551260eb9a7611c7a::$classMap;
37
-
38
- }, null, ClassLoader::class);
39
- }
40
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/composer/installed.json DELETED
@@ -1,96 +0,0 @@
1
- [
2
- {
3
- "name": "colinmollenhour/credis",
4
- "version": "1.11.2",
5
- "version_normalized": "1.11.2.0",
6
- "source": {
7
- "type": "git",
8
- "url": "https://github.com/colinmollenhour/credis.git",
9
- "reference": "b8b2bd6b87d2d4df67065f3510efb80d5f9c4e53"
10
- },
11
- "dist": {
12
- "type": "zip",
13
- "url": "https://api.github.com/repos/colinmollenhour/credis/zipball/b8b2bd6b87d2d4df67065f3510efb80d5f9c4e53",
14
- "reference": "b8b2bd6b87d2d4df67065f3510efb80d5f9c4e53",
15
- "shasum": ""
16
- },
17
- "require": {
18
- "php": ">=5.4.0"
19
- },
20
- "time": "2020-06-15T19:25:47+00:00",
21
- "type": "library",
22
- "installation-source": "dist",
23
- "autoload": {
24
- "classmap": [
25
- "Client.php",
26
- "Cluster.php",
27
- "Sentinel.php",
28
- "Module.php"
29
- ]
30
- },
31
- "notification-url": "https://packagist.org/downloads/",
32
- "license": [
33
- "MIT"
34
- ],
35
- "authors": [
36
- {
37
- "name": "Colin Mollenhour",
38
- "email": "colin@mollenhour.com"
39
- }
40
- ],
41
- "description": "Credis is a lightweight interface to the Redis key-value store which wraps the phpredis library when available for better performance.",
42
- "homepage": "https://github.com/colinmollenhour/credis"
43
- },
44
- {
45
- "name": "predis/predis",
46
- "version": "v1.1.1",
47
- "version_normalized": "1.1.1.0",
48
- "source": {
49
- "type": "git",
50
- "url": "https://github.com/nrk/predis.git",
51
- "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
52
- },
53
- "dist": {
54
- "type": "zip",
55
- "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
56
- "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
57
- "shasum": ""
58
- },
59
- "require": {
60
- "php": ">=5.3.9"
61
- },
62
- "require-dev": {
63
- "phpunit/phpunit": "~4.8"
64
- },
65
- "suggest": {
66
- "ext-curl": "Allows access to Webdis when paired with phpiredis",
67
- "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
68
- },
69
- "time": "2016-06-16T16:22:20+00:00",
70
- "type": "library",
71
- "installation-source": "dist",
72
- "autoload": {
73
- "psr-4": {
74
- "Predis\\": "src/"
75
- }
76
- },
77
- "notification-url": "https://packagist.org/downloads/",
78
- "license": [
79
- "MIT"
80
- ],
81
- "authors": [
82
- {
83
- "name": "Daniele Alessandri",
84
- "email": "suppakilla@gmail.com",
85
- "homepage": "http://clorophilla.net"
86
- }
87
- ],
88
- "description": "Flexible and feature-complete Redis client for PHP and HHVM",
89
- "homepage": "http://github.com/nrk/predis",
90
- "keywords": [
91
- "nosql",
92
- "predis",
93
- "redis"
94
- ]
95
- }
96
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dependencies/vendor/predis/predis/autoload.php CHANGED
@@ -1,14 +1,8 @@
1
  <?php
2
-
3
- /*
4
- * This file is part of the Predis package.
5
- *
6
- * (c) Daniele Alessandri <suppakilla@gmail.com>
7
  *
8
- * For the full copyright and license information, please view the LICENSE
9
- * file that was distributed with this source code.
10
  */
11
 
12
- require __DIR__.'/src/Autoloader.php';
13
-
14
- Predis\Autoloader::register();
1
  <?php
2
+ /**
3
+ * Compatiblity file to avoid WSOD/recovery-mode when updating from 2.0.0 to 2.0.1.
 
 
 
4
  *
5
+ * Returning `false` will force the plugin to update the `object-cache.php` dropin.
 
6
  */
7
 
8
+ return false;
 
 
includes/class-plugin.php CHANGED
@@ -145,7 +145,7 @@ class Plugin {
145
  public function add_plugin_actions_links( $links ) {
146
  // add settings link to plugin actions
147
  return array_merge(
148
- [ sprintf( '<a href="%s">$s</a>', network_admin_url( $this->page ), esc_html__( 'Settings', 'redis-cache' ) ) ],
149
  $links
150
  );
151
  }
@@ -246,7 +246,14 @@ class Plugin {
246
  }
247
 
248
  public function register_qm_output( $output ) {
249
- $output['cache'] = new QM_Output( \QM_Collectors::get( 'cache' ) );
 
 
 
 
 
 
 
250
 
251
  return $output;
252
  }
@@ -266,6 +273,17 @@ class Plugin {
266
  return ( strcmp( $dropin['PluginURI'], $plugin['PluginURI'] ) === 0 );
267
  }
268
 
 
 
 
 
 
 
 
 
 
 
 
269
  public function get_status() {
270
  if (
271
  ! $this->object_cache_dropin_exists() ||
@@ -287,6 +305,11 @@ class Plugin {
287
  return __( 'Unknown', 'redis-cache' );
288
  }
289
 
 
 
 
 
 
290
  public function get_redis_status() {
291
  global $wp_object_cache;
292
 
@@ -357,13 +380,12 @@ class Plugin {
357
  $url = wp_nonce_url( network_admin_url( add_query_arg( 'action', 'update-dropin', $this->page ) ), 'update-dropin' );
358
 
359
  if ( $this->validate_object_cache_dropin() ) {
360
- $dropin = get_plugin_data( WP_CONTENT_DIR . '/object-cache.php' );
361
- $plugin = get_plugin_data( WP_REDIS_PLUGIN_PATH . '/includes/object-cache.php' );
362
-
363
- if ( version_compare( $dropin['Version'], $plugin['Version'], '<' ) ) {
364
  $message = sprintf( __( 'The Redis object cache drop-in is outdated. Please <a href="%s">update the drop-in</a>.', 'redis-cache' ), $url );
365
  }
366
  } else {
 
367
  $message = sprintf( __( 'A foreign object cache drop-in was found. To use Redis for object caching, please <a href="%s">enable the drop-in</a>.', 'redis-cache' ), $url );
368
  }
369
 
@@ -498,7 +520,8 @@ class Plugin {
498
  '<div class="notice notice-info is-dismissible" data-dismissible="pro_release_notice"><p><strong>%s</strong> %s</p></div>',
499
  __( 'Redis Cache Pro is out!', 'redis-cache' ),
500
  sprintf(
501
- __( 'A <u>business class</u> object cache backend. Truly reliable, highly-optimized and fully customizable, with a <u>dedicated engineer</u> when you most need it. <a href="%1$s">Learn more »</a>', 'redis-cache' ),
 
502
  network_admin_url( $this->page )
503
  )
504
  );
@@ -531,7 +554,8 @@ class Plugin {
531
  '<div class="notice woocommerce-message woocommerce-admin-promo-messages is-dismissible" data-dismissible="wc_pro_notice"><p><strong>%s</strong></p><p>%s</p></div>',
532
  __( 'Redis Cache Pro + WooCommerce = ❤️', 'redis-cache' ),
533
  sprintf(
534
- __( 'Redis Cache Pro is a <u>business class</u> object cache that’s highly-optimized for WooCommerce to provide true reliability, peace of mind and faster load times for your store. <a style="color: #bb77ae;" href="%1$s">Learn more »</a>', 'redis-cache' ),
 
535
  network_admin_url( $this->page )
536
  )
537
  );
@@ -550,6 +574,10 @@ class Plugin {
550
  return;
551
  }
552
 
 
 
 
 
553
  if ( ! method_exists( $wp_object_cache, 'info' ) || ! method_exists( $wp_object_cache, 'redis_instance' ) ) {
554
  return;
555
  }
@@ -580,6 +608,10 @@ class Plugin {
580
  return;
581
  }
582
 
 
 
 
 
583
  if ( ! method_exists( $wp_object_cache, 'redis_instance' ) ) {
584
  return;
585
  }
@@ -619,7 +651,7 @@ class Plugin {
619
  }
620
 
621
  $message = sprintf(
622
- __( 'Performance optimized by Redis Object Cache. Learn more: %s', 'redis-cache' ),
623
  'https://wprediscache.com'
624
  );
625
 
@@ -632,6 +664,7 @@ class Plugin {
632
  $bytes = strlen( serialize( $wp_object_cache->cache ) );
633
 
634
  $debug = sprintf(
 
635
  __( 'Retrieved %1$d objects (%2$s) from Redis using %3$s.', 'redis-cache' ),
636
  $wp_object_cache->cache_hits,
637
  function_exists( 'size_format' ) ? size_format( $bytes ) : "{$bytes} bytes",
145
  public function add_plugin_actions_links( $links ) {
146
  // add settings link to plugin actions
147
  return array_merge(
148
+ [ sprintf( '<a href="%s">%s</a>', network_admin_url( $this->page ), esc_html__( 'Settings', 'redis-cache' ) ) ],
149
  $links
150
  );
151
  }
246
  }
247
 
248
  public function register_qm_output( $output ) {
249
+ $collector = \QM_Collectors::get( 'cache' );
250
+
251
+ if (
252
+ $collector instanceof QM_Collector &&
253
+ method_exists( 'QM_Output_Html', 'before_non_tabular_output' )
254
+ ) {
255
+ $output['cache'] = new QM_Output( $collector );
256
+ }
257
 
258
  return $output;
259
  }
273
  return ( strcmp( $dropin['PluginURI'], $plugin['PluginURI'] ) === 0 );
274
  }
275
 
276
+ public function object_cache_dropin_outdated() {
277
+ if ( ! $this->object_cache_dropin_exists() ) {
278
+ return false;
279
+ }
280
+
281
+ $dropin = get_plugin_data( WP_CONTENT_DIR . '/object-cache.php' );
282
+ $plugin = get_plugin_data( WP_REDIS_PLUGIN_PATH . '/includes/object-cache.php' );
283
+
284
+ return version_compare( $dropin['Version'], $plugin['Version'], '<' );
285
+ }
286
+
287
  public function get_status() {
288
  if (
289
  ! $this->object_cache_dropin_exists() ||
305
  return __( 'Unknown', 'redis-cache' );
306
  }
307
 
308
+ /**
309
+ * Retrieves the Redis connection status
310
+ *
311
+ * @return bool|null Boolean Redis connection status if available, null otherwise.
312
+ */
313
  public function get_redis_status() {
314
  global $wp_object_cache;
315
 
380
  $url = wp_nonce_url( network_admin_url( add_query_arg( 'action', 'update-dropin', $this->page ) ), 'update-dropin' );
381
 
382
  if ( $this->validate_object_cache_dropin() ) {
383
+ if ( $this->object_cache_dropin_outdated() ) {
384
+ // translators: %s = Action link to update the drop-in
 
 
385
  $message = sprintf( __( 'The Redis object cache drop-in is outdated. Please <a href="%s">update the drop-in</a>.', 'redis-cache' ), $url );
386
  }
387
  } else {
388
+ // translators: %s = Action link to update the drop-in
389
  $message = sprintf( __( 'A foreign object cache drop-in was found. To use Redis for object caching, please <a href="%s">enable the drop-in</a>.', 'redis-cache' ), $url );
390
  }
391
 
520
  '<div class="notice notice-info is-dismissible" data-dismissible="pro_release_notice"><p><strong>%s</strong> %s</p></div>',
521
  __( 'Redis Cache Pro is out!', 'redis-cache' ),
522
  sprintf(
523
+ // translators: %s = Link to the plugin setting screen
524
+ __( 'A <u>business class</u> object cache backend. Truly reliable, highly-optimized and fully customizable, with a <u>dedicated engineer</u> when you most need it. <a href="%s">Learn more »</a>', 'redis-cache' ),
525
  network_admin_url( $this->page )
526
  )
527
  );
554
  '<div class="notice woocommerce-message woocommerce-admin-promo-messages is-dismissible" data-dismissible="wc_pro_notice"><p><strong>%s</strong></p><p>%s</p></div>',
555
  __( 'Redis Cache Pro + WooCommerce = ❤️', 'redis-cache' ),
556
  sprintf(
557
+ // translators: %s = Link to the plugin's settings screen
558
+ __( 'Redis Cache Pro is a <u>business class</u> object cache that’s highly-optimized for WooCommerce to provide true reliability, peace of mind and faster load times for your store. <a style="color: #bb77ae;" href="%s">Learn more »</a>', 'redis-cache' ),
559
  network_admin_url( $this->page )
560
  )
561
  );
574
  return;
575
  }
576
 
577
+ if ( ! $this->get_redis_status() ) {
578
+ return;
579
+ }
580
+
581
  if ( ! method_exists( $wp_object_cache, 'info' ) || ! method_exists( $wp_object_cache, 'redis_instance' ) ) {
582
  return;
583
  }
608
  return;
609
  }
610
 
611
+ if ( ! $this->get_redis_status() ) {
612
+ return;
613
+ }
614
+
615
  if ( ! method_exists( $wp_object_cache, 'redis_instance' ) ) {
616
  return;
617
  }
651
  }
652
 
653
  $message = sprintf(
654
+ 'Performance optimized by Redis Object Cache. Learn more: %s',
655
  'https://wprediscache.com'
656
  );
657
 
664
  $bytes = strlen( serialize( $wp_object_cache->cache ) );
665
 
666
  $debug = sprintf(
667
+ // translators: %1$d = number of objects. %2$s = human-readable size of cache. %3$s = name of the used client.
668
  __( 'Retrieved %1$d objects (%2$s) from Redis using %3$s.', 'redis-cache' ),
669
  $wp_object_cache->cache_hits,
670
  function_exists( 'size_format' ) ? size_format( $bytes ) : "{$bytes} bytes",
includes/class-qm-collector.php CHANGED
@@ -15,6 +15,10 @@ class QM_Collector extends Base_Collector {
15
 
16
  public $id = 'cache';
17
 
 
 
 
 
18
  public function process() {
19
  global $wp_object_cache;
20
 
@@ -89,5 +93,8 @@ class QM_Collector extends Base_Collector {
89
 
90
  $this->data['has_object_cache'] = (bool) wp_using_ext_object_cache();
91
  $this->data['has_opcode_cache'] = array_filter( $this->data['opcode_cache_extensions'] ) ? true : false;
 
 
 
92
  }
93
  }
15
 
16
  public $id = 'cache';
17
 
18
+ public function name() {
19
+ return __( 'Object Cache', 'redis-cache' );
20
+ }
21
+
22
  public function process() {
23
  global $wp_object_cache;
24
 
93
 
94
  $this->data['has_object_cache'] = (bool) wp_using_ext_object_cache();
95
  $this->data['has_opcode_cache'] = array_filter( $this->data['opcode_cache_extensions'] ) ? true : false;
96
+
97
+ $this->data['display_hit_rate_warning'] = false;
98
+ $this->data['ext_object_cache'] = $this->data['has_object_cache'];
99
  }
100
  }
includes/object-cache.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Redis Object Cache Drop-In
4
  * Plugin URI: http://wordpress.org/plugins/redis-cache/
5
  * Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
6
- * Version: 2.0.0
7
  * Author: Till Krüss
8
  * Author URI: https://wprediscache.com
9
  * License: GPLv3
@@ -14,9 +14,7 @@
14
 
15
  defined( '\\ABSPATH' ) || exit;
16
 
17
- if ( defined( 'WP_REDIS_DISABLED' ) && ! WP_REDIS_DISABLED ) {
18
- return;
19
- }
20
 
21
  /**
22
  * Adds a value to cache.
@@ -609,11 +607,14 @@ class WP_Object_Cache {
609
  // Load bundled Predis library
610
  if ( ! class_exists( 'Predis\Client' ) ) {
611
  $predis = sprintf(
612
- '%s/redis-cache/dependencies/vendor/predis/predis/autoload.php',
613
  defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins'
614
  );
615
 
616
- if ( ! require_once $predis ) {
 
 
 
617
  throw new Exception(
618
  'Predis library not found. Re-install Redis Cache plugin or delete the object-cache.php.'
619
  );
@@ -677,7 +678,7 @@ class WP_Object_Cache {
677
  }
678
 
679
  $creds_path = sprintf(
680
- '%s/redis-cache/dependencies/vendor/colinmollenhour/credis/',
681
  defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins'
682
  );
683
 
@@ -1979,3 +1980,5 @@ LUA;
1979
  }
1980
  }
1981
  }
 
 
3
  * Plugin Name: Redis Object Cache Drop-In
4
  * Plugin URI: http://wordpress.org/plugins/redis-cache/
5
  * Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
6
+ * Version: 2.0.2
7
  * Author: Till Krüss
8
  * Author URI: https://wprediscache.com
9
  * License: GPLv3
14
 
15
  defined( '\\ABSPATH' ) || exit;
16
 
17
+ if ( ! defined( 'WP_REDIS_DISABLED' ) || ! WP_REDIS_DISABLED ) :
 
 
18
 
19
  /**
20
  * Adds a value to cache.
607
  // Load bundled Predis library
608
  if ( ! class_exists( 'Predis\Client' ) ) {
609
  $predis = sprintf(
610
+ '%s/redis-cache/dependencies/predis/predis/autoload.php',
611
  defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins'
612
  );
613
 
614
+
615
+ if ( is_readable( $predis ) ) {
616
+ require_once $predis;
617
+ } else {
618
  throw new Exception(
619
  'Predis library not found. Re-install Redis Cache plugin or delete the object-cache.php.'
620
  );
678
  }
679
 
680
  $creds_path = sprintf(
681
+ '%s/redis-cache/dependencies/colinmollenhour/credis/',
682
  defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins'
683
  );
684
 
1980
  }
1981
  }
1982
  }
1983
+
1984
+ endif;
includes/ui/diagnostics.php CHANGED
@@ -34,8 +34,8 @@ if ( $dropin && ! $disabled ) {
34
  );
35
  }
36
 
37
- $info['Redis Extension'] = class_exists( 'Redis' ) ? phpversion( 'redis' ) : 'Not Found';
38
- $info['Predis Client'] = class_exists( 'Predis\Client' ) ? Predis\Client::VERSION : 'Not Found';
39
 
40
  if ( defined( 'PHP_VERSION' ) ) {
41
  $info['PHP Version'] = PHP_VERSION;
34
  );
35
  }
36
 
37
+ $info['Redis Extension'] = class_exists( 'Redis' ) ? phpversion( 'redis' ) : 'Not found';
38
+ $info['Predis Client'] = class_exists( 'Predis\Client' ) ? Predis\Client::VERSION : 'Not found';
39
 
40
  if ( defined( 'PHP_VERSION' ) ) {
41
  $info['PHP Version'] = PHP_VERSION;
includes/ui/settings.php CHANGED
@@ -131,6 +131,31 @@ defined( '\\ABSPATH' ) || exit;
131
 
132
  </div>
133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  </div>
135
 
136
  </div>
131
 
132
  </div>
133
 
134
+ <!-- <div class="section-support">
135
+
136
+ <div class="card">
137
+ <h2 class="title">
138
+ <?php esc_html_e('Support', 'redis-cache'); ?>
139
+ </h2>
140
+ <p>
141
+ This plugin is maintained and supported <a target="_blank" rel="noopener" href="https://github.com/rhubarbgroup/redis-cache">on GitHub</a>,
142
+ and its connection parameters and configuration options are outlined in the documentation.
143
+ </p>
144
+ <p>
145
+ <a class="button button-secondary" target="_blank" rel="noopener" href="https://github.com/rhubarbgroup/redis-cache/wiki">
146
+ <?php esc_html_e('Documentation', 'redis-cache'); ?>
147
+ </a>
148
+
149
+ &nbsp;
150
+
151
+ <a class="button button-secondary" target="_blank" rel="noopener" href="https://github.com/rhubarbgroup/redis-cache/issues">
152
+ <?php esc_html_e('Support', 'redis-cache'); ?>
153
+ </a>
154
+ </p>
155
+ </div>
156
+
157
+ </div> -->
158
+
159
  </div>
160
 
161
  </div>
includes/ui/tabs/overview.php CHANGED
@@ -48,7 +48,18 @@ $diagnostics = $roc->get_diagnostics();
48
  <tr>
49
  <th><?php esc_html_e( 'Drop-in:', 'redis-cache' ); ?></th>
50
  <td>
51
- <code><?php echo esc_html( $roc->validate_object_cache_dropin() ? esc_html_e( 'Valid', 'redis-cache' ) : esc_html_e( 'Invalid', 'redis-cache' ) ); ?></code>
 
 
 
 
 
 
 
 
 
 
 
52
  </td>
53
  </tr>
54
 
@@ -179,7 +190,7 @@ $diagnostics = $roc->get_diagnostics();
179
  <code>
180
  <?php
181
  echo sprintf(
182
- // translators: %s = Redis connection timeout in seconds.
183
  esc_html__( '%ss', 'redis-cache' ),
184
  esc_html( $diagnostics['timeout'] )
185
  );
@@ -196,7 +207,7 @@ $diagnostics = $roc->get_diagnostics();
196
  <code>
197
  <?php
198
  echo sprintf(
199
- // translators: %s = Redis read timeout in seconds.
200
  esc_html__( '%ss', 'redis-cache' ),
201
  esc_html( $diagnostics['read_timeout'] )
202
  );
@@ -223,10 +234,12 @@ $diagnostics = $roc->get_diagnostics();
223
  </tr>
224
  <?php endif; ?>
225
 
226
- <tr>
227
- <th><?php esc_html_e( 'Redis Version:', 'redis-cache' ); ?></th>
228
- <td><code><?php echo esc_html( $redis_version ) ?: esc_html_e( 'Unknown', 'redis-cache' ); ?></code></td>
229
- </tr>
 
 
230
 
231
  </table>
232
 
48
  <tr>
49
  <th><?php esc_html_e( 'Drop-in:', 'redis-cache' ); ?></th>
50
  <td>
51
+ <code>
52
+ <?php if ( ! $roc->object_cache_dropin_exists() ) : ?>
53
+ <?php esc_html_e( 'Missing', 'redis-cache' ); ?>
54
+ <?php elseif ( $roc->object_cache_dropin_outdated() ) : ?>
55
+ <?php esc_html_e( 'Outdated', 'redis-cache' ); ?>
56
+ <?php else : ?>
57
+ <?php $roc->validate_object_cache_dropin()
58
+ ? esc_html_e( 'Valid', 'redis-cache' )
59
+ : esc_html_e( 'Invalid', 'redis-cache' );
60
+ ?>
61
+ <?php endif; ?>
62
+ </code>
63
  </td>
64
  </tr>
65
 
190
  <code>
191
  <?php
192
  echo sprintf(
193
+ // translators: %s = Redis connection/read timeout in seconds.
194
  esc_html__( '%ss', 'redis-cache' ),
195
  esc_html( $diagnostics['timeout'] )
196
  );
207
  <code>
208
  <?php
209
  echo sprintf(
210
+ // translators: %s = Redis connection/read timeout in seconds.
211
  esc_html__( '%ss', 'redis-cache' ),
212
  esc_html( $diagnostics['read_timeout'] )
213
  );
234
  </tr>
235
  <?php endif; ?>
236
 
237
+ <?php if ( ! is_null( $redis_version ) ) : ?>
238
+ <tr>
239
+ <th><?php esc_html_e( 'Redis Version:', 'redis-cache' ); ?></th>
240
+ <td><code><?php echo esc_html( $redis_version ) ?: esc_html_e( 'Unknown', 'redis-cache' ); ?></code></td>
241
+ </tr>
242
+ <?php endif; ?>
243
 
244
  </table>
245
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: redis, predis, phpredis, credis, hhvm, pecl, caching, cache, object cache,
5
  Requires at least: 3.3
6
  Tested up to: 5.4
7
  Requires PHP: 5.6
8
- Stable tag: 2.0.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -83,6 +83,25 @@ To see a list of all available WP-CLI commands, please see the [WP CLI commands
83
 
84
  == Changelog ==
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  = 2.0.0 =
87
 
88
  Version 2.0 is a significant rewrite. The plugin now requires PHP 5.6, just like WordPress 5.2 does.
5
  Requires at least: 3.3
6
  Tested up to: 5.4
7
  Requires PHP: 5.6
8
+ Stable tag: 2.0.2
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
83
 
84
  == Changelog ==
85
 
86
+ = 2.0.2 =
87
+
88
+ Version 2.0 is a significant rewrite. Please read the v2.0.0 release notes.
89
+
90
+ - Updated POT file and comments for translators
91
+
92
+ = 2.0.1 =
93
+
94
+ Version 2.0 is a significant rewrite. Please read the v2.0.0 release notes.
95
+
96
+ - Support older versions of Query Monitor
97
+ - Made "Dropin" status more helpful
98
+ - Hide Redis version in settings when it isn't available
99
+ - Collapsed dependency paths using `composer-custom-directory-installer` package
100
+ - Prevent `QM_Collector` conflicts with other plugins
101
+ - Prevent metric issues when cache is not available
102
+ - Fixed "Settings" link in plugin list
103
+ - Fixed `WP_REDIS_DISABLED` logic
104
+
105
  = 2.0.0 =
106
 
107
  Version 2.0 is a significant rewrite. The plugin now requires PHP 5.6, just like WordPress 5.2 does.
redis-cache.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Redis Object Cache
4
  * Plugin URI: https://wordpress.org/plugins/redis-cache/
5
  * Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
6
- * Version: 2.0.0
7
  * Text Domain: redis-cache
8
  * Domain Path: /languages
9
  * Network: true
3
  * Plugin Name: Redis Object Cache
4
  * Plugin URI: https://wordpress.org/plugins/redis-cache/
5
  * Description: A persistent object cache backend powered by Redis. Supports Predis, PhpRedis, Credis, HHVM, replication, clustering and WP-CLI.
6
+ * Version: 2.0.2
7
  * Text Domain: redis-cache
8
  * Domain Path: /languages
9
  * Network: true