forked from christopherobin/php-spidermonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.xml
More file actions
65 lines (65 loc) · 2.57 KB
/
package.xml
File metadata and controls
65 lines (65 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?>
<package 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" packagerversion="1.4.7" version="2.0" 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">
<name>spidermonkey</name>
<channel>pecl.php.net</channel>
<summary>JavaScript engine for PHP</summary>
<description>
This extension allow you to embed Mozilla's Javascript engine Spidermonkey in PHP.
</description>
<lead>
<name>Christophe Robin</name>
<user>crobin</user>
<email>crobin@php.net</email>
<active>yes</active>
</lead>
<date>2010-02-23</date>
<version>
<release>0.1.4</release><api>0.1.4</api>
</version>
<stability>
<release>beta</release><api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
* Fixed bugs 16866, 16876, 16890, 16983:
* Bug 16866: Returning empty string from static function causes segmentation fault
* Bug 16876: Empty string as a parameter causes segfault ( same as 16866 )
* Bug 16890: Variable is cleaned while being used in JS
* Bug 16983: Problems with registering classes containing __get()
* Added compatibility with spidermonkey 1.9
</notes>
<contents>
<dir name="/">
<file name="LICENSE" role="doc"/>
<file name="config.m4" role="src"/>
<file name="spidermonkey.c" role="src"/>
<file name="spidermonkey_context.c" role="src"/>
<file name="spidermonkey_external.c" role="src"/>
<file name="spidermonkey_streams.c" role="src"/>
<file name="php_spidermonkey.h" role="src">
<tasks:replace from="@PACKAGE_VERSION@" to="version" type="package-info" />
</file>
<file name="tests/js_functions.phpt" role="test"/>
<file name="tests/js_objects.phpt" role="test"/>
<file name="tests/js_streams.phpt" role="test"/>
<file name="tests/js_types.phpt" role="test"/>
<file name="tests/bug16866.phpt" role="test"/>
<file name="tests/bug16876.phpt" role="test"/>
<file name="tests/bug16890.phpt" role="test"/>
<file name="tests/bug16983.phpt" role="test"/>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>spidermonkey</providesextension>
<extsrcrelease/>
<changelog/>
</package>