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 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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>yes</active>
  25. </helper>
  26. <date>2015-07-20</date>
  27. <time>22:21:23</time>
  28. <version>
  29. <release>1.4.1</release>
  30. <api>1.4.0</api>
  31. </version>
  32. <stability>
  33. <release>stable</release>
  34. <api>stable</api>
  35. </stability>
  36. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  37. <notes>
  38. * Fix unit test on PHP 7 [cweiske]
  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>2015-07-20</date>
  73. <version>
  74. <release>1.4.1</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. * Fix unit test on PHP 7 [cweiske]
  84. </notes>
  85. </release>
  86. <release>
  87. <date>2015-02-22</date>
  88. <version>
  89. <release>1.4.0</release>
  90. <api>1.4.0</api>
  91. </version>
  92. <stability>
  93. <release>stable</release>
  94. <api>stable</api>
  95. </stability>
  96. <license uri="http://opensource.org/licenses/bsd-license.php">BSD-2-Clause</license>
  97. <notes>
  98. * Change license to BSD-2-Clause
  99. * Set minimum PHP version to 5.4.0
  100. * Mark static methods with "static" keyword
  101. </notes>
  102. </release>
  103. <release>
  104. <date>2011-03-07</date>
  105. <version>
  106. <release>1.3.1</release>
  107. <api>1.3.0</api>
  108. </version>
  109. <stability>
  110. <release>stable</release>
  111. <api>stable</api>
  112. </stability>
  113. <license uri="http://www.php.net/license">PHP License</license>
  114. <notes>
  115. * Change the minimum PEAR installer dep to be lower
  116. </notes>
  117. </release>
  118. <release>
  119. <date>2010-12-11</date>
  120. <time>20:20:13</time>
  121. <version>
  122. <release>1.3.0</release>
  123. <api>1.3.0</api>
  124. </version>
  125. <stability>
  126. <release>stable</release>
  127. <api>stable</api>
  128. </stability>
  129. <license uri="http://www.php.net/license">PHP License</license>
  130. <notes>
  131. * Implement Request #13140: [PATCH] to skip unknown parameters. [patch by rquadling, improved on by dufuz]
  132. </notes>
  133. </release>
  134. <release>
  135. <date>2007-06-12</date>
  136. <version>
  137. <release>1.2.3</release>
  138. <api>1.2.1</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. * fix Bug #11068: No way to read plain &quot;-&quot; option [cardoe]
  147. </notes>
  148. </release>
  149. <release>
  150. <version>
  151. <release>1.2.2</release>
  152. <api>1.2.1</api>
  153. </version>
  154. <stability>
  155. <release>stable</release>
  156. <api>stable</api>
  157. </stability>
  158. <date>2007-02-17</date>
  159. <license uri="http://www.php.net/license">PHP License</license>
  160. <notes>
  161. * fix Bug #4475: An ambiguous error occurred when specifying similar longoption name.
  162. * fix Bug #10055: Not failing properly on short options missing required values
  163. </notes>
  164. </release>
  165. <release>
  166. <version>
  167. <release>1.2.1</release>
  168. <api>1.2.1</api>
  169. </version>
  170. <stability>
  171. <release>stable</release>
  172. <api>stable</api>
  173. </stability>
  174. <date>2006-12-08</date>
  175. <license uri="http://www.php.net/license">PHP License</license>
  176. <notes>
  177. Fixed bugs #4448 (Long parameter values truncated with longoption parameter) and #7444 (Trailing spaces after php closing tag)
  178. </notes>
  179. </release>
  180. <release>
  181. <version>
  182. <release>1.2</release>
  183. <api>1.2</api>
  184. </version>
  185. <stability>
  186. <release>stable</release>
  187. <api>stable</api>
  188. </stability>
  189. <date>2003-12-11</date>
  190. <license uri="http://www.php.net/license">PHP License</license>
  191. <notes>
  192. Fix to preserve BC with 1.0 and allow correct behaviour for new users
  193. </notes>
  194. </release>
  195. <release>
  196. <version>
  197. <release>1.0</release>
  198. <api>1.0</api>
  199. </version>
  200. <stability>
  201. <release>stable</release>
  202. <api>stable</api>
  203. </stability>
  204. <date>2002-09-13</date>
  205. <license uri="http://www.php.net/license">PHP License</license>
  206. <notes>
  207. Stable release
  208. </notes>
  209. </release>
  210. <release>
  211. <version>
  212. <release>0.11</release>
  213. <api>0.11</api>
  214. </version>
  215. <stability>
  216. <release>beta</release>
  217. <api>beta</api>
  218. </stability>
  219. <date>2002-05-26</date>
  220. <license uri="http://www.php.net/license">PHP License</license>
  221. <notes>
  222. POSIX getopt compatibility fix: treat first element of args
  223. array as command name
  224. </notes>
  225. </release>
  226. <release>
  227. <version>
  228. <release>0.10</release>
  229. <api>0.10</api>
  230. </version>
  231. <stability>
  232. <release>beta</release>
  233. <api>beta</api>
  234. </stability>
  235. <date>2002-05-12</date>
  236. <license uri="http://www.php.net/license">PHP License</license>
  237. <notes>
  238. Packaging fix
  239. </notes>
  240. </release>
  241. <release>
  242. <version>
  243. <release>0.9</release>
  244. <api>0.9</api>
  245. </version>
  246. <stability>
  247. <release>beta</release>
  248. <api>beta</api>
  249. </stability>
  250. <date>2002-05-12</date>
  251. <license uri="http://www.php.net/license">PHP License</license>
  252. <notes>
  253. Initial release
  254. </notes>
  255. </release>
  256. </changelog>
  257. </package>