package.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <package packagerversion="1.9.2" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
  3. <name>Console_Getopt</name>
  4. <channel>pear.php.net</channel>
  5. <summary>Command-line option parser</summary>
  6. <description>This is a PHP implementation of &quot;getopt&quot; supporting both
  7. short and long options.</description>
  8. <lead>
  9. <name>Andrei Zmievski</name>
  10. <user>andrei</user>
  11. <email>andrei@php.net</email>
  12. <active>no</active>
  13. </lead>
  14. <developer>
  15. <name>Stig Bakken</name>
  16. <user>ssb</user>
  17. <email>stig@php.net</email>
  18. <active>no</active>
  19. </developer>
  20. <helper>
  21. <name>Greg Beaver</name>
  22. <user>cellog</user>
  23. <email>cellog@php.net</email>
  24. <active>no</active>
  25. </helper>
  26. <date>2019-11-20</date>
  27. <version>
  28. <release>1.4.3</release>
  29. <api>1.4.0</api>
  30. </version>
  31. <stability>
  32. <release>stable</release>
  33. <api>stable</api>
  34. </stability>
  35. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  36. <notes>
  37. * PR #4: Fix PHP 7.4 deprecation: array/string curly braces access
  38. * PR #5: fix phplint warnings
  39. </notes>
  40. <contents>
  41. <dir name="/">
  42. <dir name="Console">
  43. <file name="Getopt.php" role="php" />
  44. </dir>
  45. <dir name="tests">
  46. <file role="test" name="001-getopt.phpt" />
  47. <file role="test" name="bug10557.phpt" />
  48. <file role="test" name="bug11068.phpt" />
  49. <file role="test" name="bug13140.phpt" />
  50. </dir>
  51. </dir>
  52. </contents>
  53. <compatible>
  54. <name>PEAR</name>
  55. <channel>pear.php.net</channel>
  56. <min>1.4.0</min>
  57. <max>1.999.999</max>
  58. </compatible>
  59. <dependencies>
  60. <required>
  61. <php>
  62. <min>5.4.0</min>
  63. </php>
  64. <pearinstaller>
  65. <min>1.8.0</min>
  66. </pearinstaller>
  67. </required>
  68. </dependencies>
  69. <phprelease />
  70. <changelog>
  71. <release>
  72. <date>2019-11-20</date>
  73. <version>
  74. <release>1.4.3</release>
  75. <api>1.4.0</api>
  76. </version>
  77. <stability>
  78. <release>stable</release>
  79. <api>stable</api>
  80. </stability>
  81. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  82. <notes>
  83. * PR #4: Fix PHP 7.4 deprecation: array/string curly braces access
  84. * PR #5: fix phplint warnings
  85. </notes>
  86. </release>
  87. <release>
  88. <date>2019-02-06</date>
  89. <version>
  90. <release>1.4.2</release>
  91. <api>1.4.0</api>
  92. </version>
  93. <stability>
  94. <release>stable</release>
  95. <api>stable</api>
  96. </stability>
  97. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  98. <notes>
  99. * Remove use of each(), which is removed in PHP 8
  100. </notes>
  101. </release>
  102. <release>
  103. <date>2015-07-20</date>
  104. <version>
  105. <release>1.4.1</release>
  106. <api>1.4.0</api>
  107. </version>
  108. <stability>
  109. <release>stable</release>
  110. <api>stable</api>
  111. </stability>
  112. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  113. <notes>
  114. * Fix unit test on PHP 7 [cweiske]
  115. </notes>
  116. </release>
  117. <release>
  118. <date>2015-02-22</date>
  119. <version>
  120. <release>1.4.0</release>
  121. <api>1.4.0</api>
  122. </version>
  123. <stability>
  124. <release>stable</release>
  125. <api>stable</api>
  126. </stability>
  127. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  128. <notes>
  129. * Change license to BSD-2-Clause
  130. * Set minimum PHP version to 5.4.0
  131. * Mark static methods with "static" keyword
  132. </notes>
  133. </release>
  134. <release>
  135. <date>2011-03-07</date>
  136. <version>
  137. <release>1.3.1</release>
  138. <api>1.3.0</api>
  139. </version>
  140. <stability>
  141. <release>stable</release>
  142. <api>stable</api>
  143. </stability>
  144. <license uri="http://www.php.net/license">PHP License</license>
  145. <notes>
  146. * Change the minimum PEAR installer dep to be lower
  147. </notes>
  148. </release>
  149. <release>
  150. <date>2010-12-11</date>
  151. <time>20:20:13</time>
  152. <version>
  153. <release>1.3.0</release>
  154. <api>1.3.0</api>
  155. </version>
  156. <stability>
  157. <release>stable</release>
  158. <api>stable</api>
  159. </stability>
  160. <license uri="http://www.php.net/license">PHP License</license>
  161. <notes>
  162. * Implement Request #13140: [PATCH] to skip unknown parameters. [patch by rquadling, improved on by dufuz]
  163. </notes>
  164. </release>
  165. <release>
  166. <date>2007-06-12</date>
  167. <version>
  168. <release>1.2.3</release>
  169. <api>1.2.1</api>
  170. </version>
  171. <stability>
  172. <release>stable</release>
  173. <api>stable</api>
  174. </stability>
  175. <license uri="http://www.php.net/license">PHP License</license>
  176. <notes>
  177. * fix Bug #11068: No way to read plain &quot;-&quot; option [cardoe]
  178. </notes>
  179. </release>
  180. <release>
  181. <version>
  182. <release>1.2.2</release>
  183. <api>1.2.1</api>
  184. </version>
  185. <stability>
  186. <release>stable</release>
  187. <api>stable</api>
  188. </stability>
  189. <date>2007-02-17</date>
  190. <license uri="http://www.php.net/license">PHP License</license>
  191. <notes>
  192. * fix Bug #4475: An ambiguous error occurred when specifying similar longoption name.
  193. * fix Bug #10055: Not failing properly on short options missing required values
  194. </notes>
  195. </release>
  196. <release>
  197. <version>
  198. <release>1.2.1</release>
  199. <api>1.2.1</api>
  200. </version>
  201. <stability>
  202. <release>stable</release>
  203. <api>stable</api>
  204. </stability>
  205. <date>2006-12-08</date>
  206. <license uri="http://www.php.net/license">PHP License</license>
  207. <notes>
  208. Fixed bugs #4448 (Long parameter values truncated with longoption parameter) and #7444 (Trailing spaces after php closing tag)
  209. </notes>
  210. </release>
  211. <release>
  212. <version>
  213. <release>1.2</release>
  214. <api>1.2</api>
  215. </version>
  216. <stability>
  217. <release>stable</release>
  218. <api>stable</api>
  219. </stability>
  220. <date>2003-12-11</date>
  221. <license uri="http://www.php.net/license">PHP License</license>
  222. <notes>
  223. Fix to preserve BC with 1.0 and allow correct behaviour for new users
  224. </notes>
  225. </release>
  226. <release>
  227. <version>
  228. <release>1.0</release>
  229. <api>1.0</api>
  230. </version>
  231. <stability>
  232. <release>stable</release>
  233. <api>stable</api>
  234. </stability>
  235. <date>2002-09-13</date>
  236. <license uri="http://www.php.net/license">PHP License</license>
  237. <notes>
  238. Stable release
  239. </notes>
  240. </release>
  241. <release>
  242. <version>
  243. <release>0.11</release>
  244. <api>0.11</api>
  245. </version>
  246. <stability>
  247. <release>beta</release>
  248. <api>beta</api>
  249. </stability>
  250. <date>2002-05-26</date>
  251. <license uri="http://www.php.net/license">PHP License</license>
  252. <notes>
  253. POSIX getopt compatibility fix: treat first element of args
  254. array as command name
  255. </notes>
  256. </release>
  257. <release>
  258. <version>
  259. <release>0.10</release>
  260. <api>0.10</api>
  261. </version>
  262. <stability>
  263. <release>beta</release>
  264. <api>beta</api>
  265. </stability>
  266. <date>2002-05-12</date>
  267. <license uri="http://www.php.net/license">PHP License</license>
  268. <notes>
  269. Packaging fix
  270. </notes>
  271. </release>
  272. <release>
  273. <version>
  274. <release>0.9</release>
  275. <api>0.9</api>
  276. </version>
  277. <stability>
  278. <release>beta</release>
  279. <api>beta</api>
  280. </stability>
  281. <date>2002-05-12</date>
  282. <license uri="http://www.php.net/license">PHP License</license>
  283. <notes>
  284. Initial release
  285. </notes>
  286. </release>
  287. </changelog>
  288. </package>