You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.xml 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <package version="2.0"
  3. xmlns="http://pear.php.net/dtd/package-2.0"
  4. xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
  7. http://pear.php.net/dtd/tasks-1.0.xsd
  8. http://pear.php.net/dtd/package-2.0
  9. http://pear.php.net/dtd/package-2.0.xsd"
  10. >
  11. <name>Auth_SASL</name>
  12. <channel>pear.php.net</channel>
  13. <summary>Abstraction of various SASL mechanism responses</summary>
  14. <description>
  15. Provides code to generate responses to common SASL mechanisms, including:
  16. - Digest-MD5
  17. - Cram-MD5
  18. - Plain
  19. - Anonymous
  20. - Login (Pseudo mechanism)
  21. - SCRAM
  22. </description>
  23. <lead>
  24. <name>Anish Mistry</name>
  25. <user>amistry</user>
  26. <email>amistry@am-productions.biz</email>
  27. <active>no</active>
  28. </lead>
  29. <lead>
  30. <name>Richard Heyes</name>
  31. <user>richard</user>
  32. <email>richard@php.net</email>
  33. <active>no</active>
  34. </lead>
  35. <lead>
  36. <name>Michael Bretterklieber</name>
  37. <user>mbretter</user>
  38. <email>michael@bretterklieber.com</email>
  39. <active>no</active>
  40. </lead>
  41. <date>2017-03-07</date>
  42. <version>
  43. <release>1.1.0</release>
  44. <api>1.1.0</api>
  45. </version>
  46. <stability>
  47. <release>stable</release>
  48. <api>stable</api>
  49. </stability>
  50. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  51. <notes>
  52. * Set minimum PHP version to 5.4.0
  53. * Set minimum PEAR version to 1.10.1
  54. * Request #21033: PHP warning depreciated
  55. </notes>
  56. <contents>
  57. <dir name="/">
  58. <dir name="Auth">
  59. <dir name="SASL">
  60. <file name="Anonymous.php" role="php" />
  61. <file name="Common.php" role="php" />
  62. <file name="CramMD5.php" role="php" />
  63. <file name="DigestMD5.php" role="php" />
  64. <file name="External.php" role="php" />
  65. <file name="Login.php" role="php" />
  66. <file name="Plain.php" role="php" />
  67. <file name="SCRAM.php" role="php" />
  68. </dir> <!-- //SASL -->
  69. <file name="SASL.php" role="php" />
  70. </dir><!-- /Auth -->
  71. </dir> <!-- / -->
  72. </contents>
  73. <dependencies>
  74. <required>
  75. <php>
  76. <min>5.4.0</min>
  77. </php>
  78. <pearinstaller>
  79. <min>1.10.1</min>
  80. </pearinstaller>
  81. </required>
  82. </dependencies>
  83. <phprelease />
  84. <changelog>
  85. <release>
  86. <version>
  87. <release>1.1.0</release>
  88. <api>1.1.0</api>
  89. </version>
  90. <stability>
  91. <release>stable</release>
  92. <api>stable</api>
  93. </stability>
  94. <date>2017-03-07</date>
  95. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  96. <notes>
  97. * Set minimum PHP version to 5.4.0
  98. * Set minimum PEAR version to 1.10.1
  99. * Request #21033: PHP warning depreciated
  100. </notes>
  101. </release>
  102. <release>
  103. <version>
  104. <release>1.0.6</release>
  105. <api>1.0.3</api>
  106. </version>
  107. <stability>
  108. <release>stable</release>
  109. <api>stable</api>
  110. </stability>
  111. <date>2011-09-27</date>
  112. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  113. <notes>
  114. QA release
  115. * Bug #18856: Authentication warnings because of wrong Auth_SASL::factory argument [kguest]
  116. </notes>
  117. </release>
  118. <release>
  119. <version>
  120. <release>1.0.5</release>
  121. <api>1.0.3</api>
  122. </version>
  123. <stability>
  124. <release>stable</release>
  125. <api>stable</api>
  126. </stability>
  127. <date>2011-09-04</date>
  128. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  129. <notes>
  130. QA release
  131. * Added support for any mechanism of the SCRAM family; with thanks to Jehan Pagès. [kguest]
  132. * crammd5 and digestmd5 mechanisms name deprecated in favour of IANA registered names 'cram-md5' and 'digest-md5'; with thanks to Jehan Pagès. [kguest]
  133. </notes>
  134. </release>
  135. <release>
  136. <version>
  137. <release>1.0.4</release>
  138. <api>1.0.3</api>
  139. </version>
  140. <stability>
  141. <release>stable</release>
  142. <api>stable</api>
  143. </stability>
  144. <date>2010-02-07</date>
  145. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  146. <notes>
  147. QA release
  148. * Fix bug #16624: open_basedir restriction warning in DigestMD5.php [till]
  149. </notes>
  150. </release>
  151. <release>
  152. <version>
  153. <release>1.0.3</release>
  154. <api>1.0.3</api>
  155. </version>
  156. <stability>
  157. <release>stable</release>
  158. <api>stable</api>
  159. </stability>
  160. <date>2009-08-05</date>
  161. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  162. <notes>
  163. QA release
  164. * Move SVN to proper directory structure [cweiske]
  165. * Fix Bug #8775: Error in package.xml
  166. * Fix Bug #14671: Security issue due to seeding random number generator [cweiske]
  167. </notes>
  168. </release>
  169. <release>
  170. <version>
  171. <release>1.0.2</release>
  172. <api>1.0.2</api>
  173. </version>
  174. <stability>
  175. <release>stable</release>
  176. <api>stable</api>
  177. </stability>
  178. <date>2006-05-21</date>
  179. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  180. <notes>
  181. * Fixed Bug #2143 Auth_SASL_DigestMD5::getResponse() generates invalid response
  182. * Fixed Bug #6611 Suppress PHP 5 Notice Errors
  183. * Fixed Bug #2154 realm isn't contained in challange
  184. </notes>
  185. </release>
  186. <release>
  187. <version>
  188. <release>1.0.1</release>
  189. <api>1.0.1</api>
  190. </version>
  191. <stability>
  192. <release>stable</release>
  193. <api>stable</api>
  194. </stability>
  195. <date>2003-09-11</date>
  196. <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
  197. <notes>* Added authcid/authzid separation in PLAIN and DIGEST-MD5.
  198. </notes>
  199. </release>
  200. </changelog>
  201. </package>