forked from kjdev/php-ext-brotli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.xml
More file actions
218 lines (218 loc) · 11.2 KB
/
package.xml
File metadata and controls
218 lines (218 loc) · 11.2 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.10.13" 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>brotli</name>
<channel>pecl.php.net</channel>
<summary>Brotli extension</summary>
<description>PHP extension for compression and decompression with Brotli library.</description>
<lead>
<name>Tatsuya KAMIJO</name>
<user>kjdev</user>
<email>kjdev@php.net</email>
<active>yes</active>
</lead>
<date>2026-06-05</date>
<version>
<release>0.19.0</release>
<api>0.19.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license>MIT</license>
<notes>
- add: configurable compression level for the APCu serializer (brotli.apcu_compression_level)
- fix: SIGSEGV in the APCu serializer callbacks on ZTS shared builds
- fix: CG(empty_string) crash in the smart_str_extract() fallback on PHP 7.1 ZTS
- fix: heap-buffer-overflow in php_brotli_decompress_read() inner read
- fix: heap-use-after-free in php_brotli_decompress_read()
- fix: propagate failure of brotli_uncompress_add() to the caller
- fix: UBSAN-detected undefined behavior in brotli_uncompress_add()
- fix: build on PHP 8.6+
</notes>
<contents>
<dir name="/">
<file name="LICENSE" role="doc" />
<file name="README.md" role="doc" />
<file name="brotli.c" role="src" />
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="php_brotli.h" role="src" />
<file name="brotli/LICENSE" role="doc" />
<file name="brotli/c/common/constants.c" role="src" />
<file name="brotli/c/common/constants.h" role="src" />
<file name="brotli/c/common/context.c" role="src" />
<file name="brotli/c/common/context.h" role="src" />
<file name="brotli/c/common/dictionary.c" role="src" />
<file name="brotli/c/common/dictionary.h" role="src" />
<file name="brotli/c/common/dictionary_inc.h" role="src" />
<file name="brotli/c/common/platform.c" role="src" />
<file name="brotli/c/common/platform.h" role="src" />
<file name="brotli/c/common/shared_dictionary.c" role="src" />
<file name="brotli/c/common/shared_dictionary_internal.h" role="src" />
<file name="brotli/c/common/static_init.h" role="src" />
<file name="brotli/c/common/transform.c" role="src" />
<file name="brotli/c/common/transform.h" role="src" />
<file name="brotli/c/common/version.h" role="src" />
<file name="brotli/c/dec/bit_reader.c" role="src" />
<file name="brotli/c/dec/bit_reader.h" role="src" />
<file name="brotli/c/dec/decode.c" role="src" />
<file name="brotli/c/dec/huffman.c" role="src" />
<file name="brotli/c/dec/huffman.h" role="src" />
<file name="brotli/c/dec/prefix.c" role="src" />
<file name="brotli/c/dec/prefix.h" role="src" />
<file name="brotli/c/dec/prefix_inc.h" role="src" />
<file name="brotli/c/dec/state.c" role="src" />
<file name="brotli/c/dec/state.h" role="src" />
<file name="brotli/c/dec/static_init.c" role="src" />
<file name="brotli/c/dec/static_init.h" role="src" />
<file name="brotli/c/enc/backward_references.c" role="src" />
<file name="brotli/c/enc/backward_references.h" role="src" />
<file name="brotli/c/enc/backward_references_hq.c" role="src" />
<file name="brotli/c/enc/backward_references_hq.h" role="src" />
<file name="brotli/c/enc/backward_references_inc.h" role="src" />
<file name="brotli/c/enc/bit_cost.c" role="src" />
<file name="brotli/c/enc/bit_cost.h" role="src" />
<file name="brotli/c/enc/bit_cost_inc.h" role="src" />
<file name="brotli/c/enc/block_encoder_inc.h" role="src" />
<file name="brotli/c/enc/block_splitter.c" role="src" />
<file name="brotli/c/enc/block_splitter.h" role="src" />
<file name="brotli/c/enc/block_splitter_inc.h" role="src" />
<file name="brotli/c/enc/brotli_bit_stream.c" role="src" />
<file name="brotli/c/enc/brotli_bit_stream.h" role="src" />
<file name="brotli/c/enc/cluster.c" role="src" />
<file name="brotli/c/enc/cluster.h" role="src" />
<file name="brotli/c/enc/cluster_inc.h" role="src" />
<file name="brotli/c/enc/command.c" role="src" />
<file name="brotli/c/enc/command.h" role="src" />
<file name="brotli/c/enc/compound_dictionary.c" role="src" />
<file name="brotli/c/enc/compound_dictionary.h" role="src" />
<file name="brotli/c/enc/compress_fragment.c" role="src" />
<file name="brotli/c/enc/compress_fragment.h" role="src" />
<file name="brotli/c/enc/compress_fragment_two_pass.c" role="src" />
<file name="brotli/c/enc/compress_fragment_two_pass.h" role="src" />
<file name="brotli/c/enc/dictionary_hash.c" role="src" />
<file name="brotli/c/enc/dictionary_hash.h" role="src" />
<file name="brotli/c/enc/dictionary_hash_inc.h" role="src" />
<file name="brotli/c/enc/encode.c" role="src" />
<file name="brotli/c/enc/encoder_dict.c" role="src" />
<file name="brotli/c/enc/encoder_dict.h" role="src" />
<file name="brotli/c/enc/entropy_encode.c" role="src" />
<file name="brotli/c/enc/entropy_encode.h" role="src" />
<file name="brotli/c/enc/entropy_encode_static.h" role="src" />
<file name="brotli/c/enc/fast_log.c" role="src" />
<file name="brotli/c/enc/fast_log.h" role="src" />
<file name="brotli/c/enc/find_match_length.h" role="src" />
<file name="brotli/c/enc/hash.h" role="src" />
<file name="brotli/c/enc/hash_base.h" role="src" />
<file name="brotli/c/enc/hash_composite_inc.h" role="src" />
<file name="brotli/c/enc/hash_forgetful_chain_inc.h" role="src" />
<file name="brotli/c/enc/hash_longest_match64_inc.h" role="src" />
<file name="brotli/c/enc/hash_longest_match64_simd_inc.h" role="src" />
<file name="brotli/c/enc/hash_longest_match_inc.h" role="src" />
<file name="brotli/c/enc/hash_longest_match_quickly_inc.h" role="src" />
<file name="brotli/c/enc/hash_longest_match_simd_inc.h" role="src" />
<file name="brotli/c/enc/hash_rolling_inc.h" role="src" />
<file name="brotli/c/enc/hash_to_binary_tree_inc.h" role="src" />
<file name="brotli/c/enc/histogram.c" role="src" />
<file name="brotli/c/enc/histogram.h" role="src" />
<file name="brotli/c/enc/histogram_inc.h" role="src" />
<file name="brotli/c/enc/literal_cost.c" role="src" />
<file name="brotli/c/enc/literal_cost.h" role="src" />
<file name="brotli/c/enc/matching_tag_mask.h" role="src" />
<file name="brotli/c/enc/memory.c" role="src" />
<file name="brotli/c/enc/memory.h" role="src" />
<file name="brotli/c/enc/metablock.c" role="src" />
<file name="brotli/c/enc/metablock.h" role="src" />
<file name="brotli/c/enc/metablock_inc.h" role="src" />
<file name="brotli/c/enc/params.h" role="src" />
<file name="brotli/c/enc/prefix.h" role="src" />
<file name="brotli/c/enc/quality.h" role="src" />
<file name="brotli/c/enc/ringbuffer.h" role="src" />
<file name="brotli/c/enc/state.h" role="src" />
<file name="brotli/c/enc/static_dict.c" role="src" />
<file name="brotli/c/enc/static_dict.h" role="src" />
<file name="brotli/c/enc/static_dict_lut.c" role="src" />
<file name="brotli/c/enc/static_dict_lut.h" role="src" />
<file name="brotli/c/enc/static_dict_lut_inc.h" role="src" />
<file name="brotli/c/enc/static_init.c" role="src" />
<file name="brotli/c/enc/static_init.h" role="src" />
<file name="brotli/c/enc/utf8_util.c" role="src" />
<file name="brotli/c/enc/utf8_util.h" role="src" />
<file name="brotli/c/enc/write_bits.h" role="src" />
<file name="brotli/c/include/brotli/decode.h" role="src" />
<file name="brotli/c/include/brotli/encode.h" role="src" />
<file name="brotli/c/include/brotli/port.h" role="src" />
<file name="brotli/c/include/brotli/shared_dictionary.h" role="src" />
<file name="brotli/c/include/brotli/types.h" role="src" />
<file name="tests/alias.phpt" role="test" />
<file name="tests/apcu_serializer.phpt" role="test" />
<file name="tests/compatibility.phpt" role="test" />
<file name="tests/compress_add.phpt" role="test" />
<file name="tests/compress_args.phpt" role="test" />
<file name="tests/dictionary_args.phpt" role="test" />
<file name="tests/dictionary_basic.phpt" role="test" />
<file name="tests/dictionary_incremental.phpt" role="test" />
<file name="tests/dictionary_named_args.phpt" role="test" />
<file name="tests/dictionary_named_args_incremental.phpt" role="test" />
<file name="tests/dictionary_ob.phpt" role="test" />
<file name="tests/dictionary_streams.phpt" role="test" />
<file name="tests/data.dict" role="test" />
<file name="tests/data.inc" role="test" />
<file name="tests/files.inc" role="test" />
<file name="tests/incremental_compress_add_alias.phpt" role="test" />
<file name="tests/incremental_compress_add_args.phpt" role="test" />
<file name="tests/incremental_compress_add_basic.phpt" role="test" />
<file name="tests/incremental_uncompress_add_alias.phpt" role="test" />
<file name="tests/incremental_uncompress_add_basic.phpt" role="test" />
<file name="tests/info.phpt" role="test" />
<file name="tests/named_args.phpt" role="test" />
<file name="tests/named_args_incremental.phpt" role="test" />
<file name="tests/ob_001.phpt" role="test" />
<file name="tests/ob_002.phpt" role="test" />
<file name="tests/ob_003.phpt" role="test" />
<file name="tests/ob_004.phpt" role="test" />
<file name="tests/ob_005.phpt" role="test" />
<file name="tests/ob_006.phpt" role="test" />
<file name="tests/ob_007.phpt" role="test" />
<file name="tests/ob_008.phpt" role="test" />
<file name="tests/ob_009.phpt" role="test" />
<file name="tests/ob_010.phpt" role="test" />
<file name="tests/ob_011.phpt" role="test" />
<file name="tests/ob_dcb_001.phpt" role="test" />
<file name="tests/ob_dcb_002.phpt" role="test" />
<file name="tests/ob_dcb_003.phpt" role="test" />
<file name="tests/ob_dcb_004.phpt" role="test" />
<file name="tests/ob_dcb_005.phpt" role="test" />
<file name="tests/roundtrip.phpt" role="test" />
<file name="tests/streams_001.phpt" role="test" />
<file name="tests/streams_002.phpt" role="test" />
<file name="tests/streams_003.phpt" role="test" />
<file name="tests/streams_004.phpt" role="test" />
<file name="tests/streams_005.phpt" role="test" />
<file name="tests/streams_006.phpt" role="test" />
<file name="tests/streams_007.phpt" role="test" />
<file name="tests/files/dictionary_ob.br" role="test" />
<file name="tests/files/ob_008.br" role="test" />
<file name="tests/files/ob_011.br" role="test" />
<file name="tests/files/ob_data.br" role="test" />
<file name="tests/files/ob_dcb.br" role="test" />
<file name="tests/files/ob_hi.br" role="test" />
<file name="tests/files/ob_data.br" role="test" />
<file name="tests/files/ob_dcb.br" role="test" />
<file name="tests/files/ob_hi.br" role="test" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>brotli</providesextension>
<extsrcrelease />
</package>