-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
64 lines (64 loc) · 2.2 KB
/
package.xml
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
<?xml version="1.0"?>
<package 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">
<name>fastcov</name>
<channel>pecl.php.net</channel>
<summary>Lightweight code coverage for PHP</summary>
<description>Allows code coverage of specific part of codes or global code coverage through ini values.</description>
<lead>
<name>Christophe Robin</name>
<user>crobin</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2011-03-06</date>
<version>
<release>0.9.0</release>
<api>0.9.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license/3_01.txt">PHP License</license>
<notes>
Last 5 commits:
* 388b1bb: Added config.w32
* 858b429: Fixed a leak with the filename storage and an issue with fastcov_stop trying to access the file coverage hash even if not initialized
* f53a37c: Fixed issues with opcode caches by switching to hash tables and optimized speed to reduce coverage payload
* fc5b555: Removed usage of file_compile in favor of live alloc of coverage structure and added high_compatibility mode for opcode caches like APC
* d66add7: Optimized current_file finding, started working on compile_fileless version
</notes>
<contents>
<dir name="/">
<dir name="tests">
<file name="basic.phpt" role="test" />
<file name="output.phpt" role="test" />
<file name="realloc.phpt" role="test" />
</dir> <!-- //tests -->
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="fastcov.c" role="src" />
<file name="php_fastcov.h" role="src" />
<file name="LICENSE" role="doc" />
<file name="README.md" role="doc" />
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.3</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>fastcov</providesextension>
<extsrcrelease />
</package>