forked from wikimedia/mediawiki-php-excimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
154 lines (154 loc) · 4.34 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.8.1" 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>excimer</name>
<channel>pecl.php.net</channel>
<summary>Interrupting timer and low-overhead sampling profiler</summary>
<description>Calls a user-defined callback when a one-shot or periodic timer expires. Also a sampling profiler backend, which aggregates backtraces collected by a periodic timer.</description>
<lead>
<name>Tim Starling</name>
<user>tstarling</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Kunal Mehta</name>
<user>legoktm</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Timo Tijhof</name>
<user>krinkle</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2023-03-13</date>
<version>
<release>1.1.1</release>
<api>1.1.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0" filesource="LICENSE">Apache 2.0</license>
<notes>
- Restore support for PHP 7.1-7.3
</notes>
<contents>
<dir name="/">
<file name="LICENSE" role="doc"/>
<file name="README.md" role="doc"/>
<file name="config.m4" role="src"/>
<file name="excimer.c" role="src"/>
<file name="excimer.ini" role="src"/>
<file name="excimer_log.c" role="src"/>
<file name="excimer_log.h" role="src"/>
<file name="excimer_timer.c" role="src"/>
<file name="excimer_timer.h" role="src"/>
<file name="php_excimer.h" role="src"/>
<dir name="stubs">
<file name="ExcimerLog.php" role="doc"/>
<file name="ExcimerLogEntry.php" role="doc"/>
<file name="ExcimerProfiler.php" role="doc"/>
<file name="ExcimerTimer.php" role="doc"/>
<file name="globals.php" role="doc"/>
</dir>
<dir name="tests">
<file name="cpu.phpt" role="test"/>
<file name="maxDepth.phpt" role="test"/>
<file name="periodic.phpt" role="test"/>
<file name="real.phpt" role="test"/>
<file name="timeout.phpt" role="test"/>
<file name="timer.phpt" role="test"/>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.1.0</min>
</php>
<pearinstaller>
<min>1.8.0</min>
</pearinstaller>
<os>
<name>linux</name>
</os>
</required>
</dependencies>
<providesextension>excimer</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2023-03-01</date>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<notes>
- Fix leading semi-colon in ExcimerLog::formatCollapsed output
- Change ExcimerLog::formatCollapsed to mark truncated frames
- Add support for PHP 8.2
- Add ExcimerLog::getSpeedscopeData for Speedscope support
</notes>
</release>
<release>
<date>2022-05-07</date>
<version>
<release>1.0.4</release>
<api>1.0.4</api>
</version>
<notes>
- Fix arginfo error for PHP 7.1
</notes>
</release>
<release>
<date>2022-05-04</date>
<version>
<release>1.0.3</release>
<api>1.0.3</api>
</version>
<notes>
- Set return type on ExcimerLog::aggregateByFunction
- Set return type on ExcimerProfiler::getLog
</notes>
</release>
<release>
<date>2021-10-16</date>
<version>
<release>1.0.2</release>
<api>1.0.2</api>
</version>
<notes>
- Fix Iterator prototypes for PHP 8.1
- Add extension version in phpinfo()
</notes>
</release>
<release>
<date>2021-09-29</date>
<version>
<release>1.0.1</release>
<api>1.0.1</api>
</version>
<notes>
- Filter null bytes out of the collapsed output
- Fix segfault in ZTS mode
- Fix [-Wincompatible-pointer-types] with PHP 8
</notes>
</release>
<release>
<date>2021-02-26</date>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<notes>
- Initial PECL release
</notes>
</release>
</changelog>
</package>