mirror of
https://github.com/php/php-src.git
synced 2025-01-10 04:54:47 +08:00
eeb172b29f
Adding a package.xml to a bundled extension does not only ease the transition to PECL whereever suitable but also allows to build and install an extension as "shared" using the PEAR installer without having to deal with phpize and friends by hand
75 lines
2.2 KiB
XML
75 lines
2.2 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
|
<!DOCTYPE package SYSTEM "../pear/package.dtd">
|
|
<package>
|
|
<name>xml</name>
|
|
<summary>XML Parsing functions</summary>
|
|
<maintainers>
|
|
<maintainer>
|
|
<user>ssb</user>
|
|
<name>Stig Bakken</name>
|
|
<email>ssb@php.net</email>
|
|
<role>lead</role>
|
|
</maintainer>
|
|
<maintainer>
|
|
<user>thies</user>
|
|
<name>Thies Arntzen</name>
|
|
<email>thies@php.net</email>
|
|
<role>lead</role>
|
|
</maintainer>
|
|
<maintainer>
|
|
<user>sterling</user>
|
|
<name>Sterling Hughes</name>
|
|
<email>sterling@php.net</email>
|
|
<role>lead</role>
|
|
</maintainer>
|
|
</maintainers>
|
|
<description>
|
|
This extension lets you create XML parsers and then define
|
|
handlers for different XML events. Each XML parser also has
|
|
a few parameters you can adjust.
|
|
</description>
|
|
<license>PHP</license>
|
|
<release>
|
|
<state>beta</state>
|
|
<version>5.0rc1</version>
|
|
<date>2004-03-19</date>
|
|
<notes>
|
|
package.xml added to support intallation using pear installer
|
|
</notes>
|
|
<configureoptions>
|
|
<configureoption name="with-curl" default="autodetect" prompt="path to curl installation?"/>
|
|
</configureoptions>
|
|
<filelist>
|
|
<file role="doc" name="CREDITS"/>
|
|
<file role="src" name="config.m4"/>
|
|
<file role="src" name="config.mw32"/>
|
|
<file role="src" name="xml.mak"/>
|
|
<file role="src" name="compat.c"/>
|
|
<file role="src" name="expat_compat.h"/>
|
|
<file role="src" name="php_xml.h"/>
|
|
<file role="src" name="xml.c"/>
|
|
<file role="test" name="tests/.cvsignore"/>
|
|
<file role="test" name="tests/inc.ent"/>
|
|
<file role="test" name="tests/skipif.inc"/>
|
|
<file role="test" name="tests/xml001.phpt"/>
|
|
<file role="test" name="tests/xml002.phpt"/>
|
|
<file role="test" name="tests/xml003.phpt"/>
|
|
<file role="test" name="tests/xml004.phpt"/>
|
|
<file role="test" name="tests/xml006.phpt"/>
|
|
<file role="test" name="tests/xml007.phpt"/>
|
|
<file role="test" name="tests/xmltest.xml"/>
|
|
<file role="test" name="tests/bug25666.phpt"/>
|
|
<file role="test" name="tests/bug26528.phpt"/>
|
|
<file role="test" name="tests/bug26614.phpt"/>
|
|
<file role="test" name="tests/xml009.phpt"/>
|
|
<file role="test" name="tests/xml010.phpt"/>
|
|
</filelist>
|
|
<deps>
|
|
<dep type="php" rel="ge" version="5" />
|
|
</deps>
|
|
</release>
|
|
</package>
|
|
<!--
|
|
vim:et:ts=1:sw=1
|
|
-->
|