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.

75 lines
2.3 KiB

22 years ago
22 years ago
22 years ago
22 years ago
21 years ago
22 years ago
21 years ago
22 years ago
21 years ago
21 years ago
22 years ago
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE package SYSTEM "../package.dtd">
  3. <package>
  4. <name>xmlreader</name>
  5. <summary>Provides fast, non-cached, forward-only access to XML data under PHP 5.</summary>
  6. <description>
  7. This extension wraps the libxml xmlReader API. The reader acts as a cursor
  8. going forward on the document stream and stopping at each node in the way.
  9. xmlReader is similar to SAX though uses a much simpler API.
  10. </description>
  11. <license>PHP License</license>
  12. <maintainers>
  13. <maintainer>
  14. <user>rrichards</user>
  15. <name>Rob Richards</name>
  16. <email>rrichards@php.net</email>
  17. <role>lead</role>
  18. </maintainer>
  19. <maintainer>
  20. <user>chregu</user>
  21. <role>lead</role>
  22. <name>Christian Stocker</name>
  23. <email>chregu@php.net</email>
  24. </maintainer>
  25. </maintainers>
  26. <release>
  27. <version>1.0.1</version>
  28. <date>2005-04-30</date>
  29. <state>stable</state>
  30. <notes>
  31. Add workaround for next() bug when using libxml 2.6.17 and lower.
  32. </notes>
  33. </release>
  34. <changelog>
  35. <release>
  36. <version>1.0</version>
  37. <date>2004-07-27</date>
  38. <state>stable</state>
  39. <notes>
  40. Add name parameter to next() to skip to next named sibling node.
  41. </notes>
  42. </release>
  43. </changelog>
  44. <configureoptions>
  45. <configureoption name="with-xmlreader" default="autodetect" prompt="Include XMLReader support?"/>
  46. </configureoptions>
  47. <filelist>
  48. <file role="src" name="config.m4"/>
  49. <file role="src" name="config.w32"/>
  50. <file role="src" name="php_xmlreader.c"/>
  51. <file role="src" name="php_xmlreader.h"/>
  52. <file role="doc" name="CREDITS"/>
  53. <file role="doc" name="TODO"/>
  54. <file role="doc" name="README"/>
  55. <file role="doc" name="examples/xmlreader_file.php"/>
  56. <file role="doc" name="examples/xmlreader_string.php"/>
  57. <file role="doc" name="examples/xmlreader.xml"/>
  58. <file role="doc" name="examples/xmlreader_validatedtd.php"/>
  59. <file role="doc" name="examples/dtdexample.xml"/>
  60. <file role="doc" name="examples/dtdexample.dtd"/>
  61. <file role="doc" name="examples/xmlreader_relaxNG.php"/>
  62. <file role="doc" name="examples/relaxNG.xml"/>
  63. <file role="doc" name="examples/relaxNG.rng"/>
  64. <file role="doc" name="examples/relaxNG2.rng"/>
  65. <file role="doc" name="examples/relaxNG3.rng"/>
  66. </filelist>
  67. <deps>
  68. <dep type="php" rel="ge" version="5" />
  69. <dep type="ext" rel="has">libxml</dep>
  70. </deps>
  71. </package>