forked from crazyxman/simdjson_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
157 lines (157 loc) · 5.43 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
155
156
157
<?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" 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>simdjson</name>
<channel>pecl.php.net</channel>
<summary>Provides faster json decoding through simdjson bindings for PHP</summary>
<description>Provides faster json decoding through simdjson bindings for PHP (Single Instruction, Multiple Data)</description>
<lead>
<name>Tyson Andre</name>
<user>tandre</user>
<email>tandre@php.net</email>
<active>yes</active>
</lead>
<!-- https://pecl.php.net/release-upload.php fails with "User does not exist" for blank username, there is no corresponding PECL account.
<lead>
<name>Jinxi Wang</name>
<user></user>
<email>1054636713@qq.com</email>
<active>yes</active>
</lead>
-->
<date>2022-10-01</date>
<version>
<release>2.0.4</release>
<api>2.0.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* Add `-fvisibility=hidden` to compiler options to reduce compiled extension size by avoiding exporting symbols by default.
* If the requested json parsing $depth is excessively large when reallocating larger buffers for the C simdjson parser,
then internally use a smaller $depth that would behave identically with lower memory usage. (#66)
* Update simdjson to properly reject surrogate pairs with an invalid low surrogate. (https://en.wikipedia.org/wiki/UTF-16)
</notes>
<contents>
<dir name="/">
<file name="CMakeLists.txt" role="src"/>
<file name="config.m4" role="src"/>
<file name="config.w32" role="src"/>
<file name="CREDITS" role="doc"/>
<file name="LICENSE" role="doc"/>
<file name="php_simdjson.h" role="src"/>
<file name="php_simdjson.cpp" role="src"/>
<file name="README.md" role="doc"/>
<dir name="src">
<file name="bindings.cpp" role="src"/>
<file name="bindings.h" role="src"/>
<file name="simdjson.cpp" role="src"/>
<file name="simdjson.h" role="src"/>
</dir>
<dir name="tests">
<file name="32bit_support.phpt" role="test"/>
<file name="64bit_support.phpt" role="test"/>
<file name="decode_args.phpt" role="test"/>
<file name="decode_exception.phpt" role="test"/>
<file name="decode_integer_overflow.phpt" role="test"/>
<file name="decode_invalid_property.phpt" role="test"/>
<file name="decode_max_depth.phpt" role="test"/>
<file name="decode_max_depth_memory_reduction.phpt" role="test"/>
<file name="decode_result.phpt" role="test"/>
<file name="decode_strict_types.phpt" role="test"/>
<file name="decode_types.phpt" role="test"/>
<file name="depth.phpt" role="test"/>
<file name="is_valid.phpt" role="test"/>
<file name="is_valid_args.phpt" role="test"/>
<file name="key_count.phpt" role="test"/>
<file name="key_count_args.phpt" role="test"/>
<file name="key_count_exception.phpt" role="test"/>
<file name="key_exists.phpt" role="test"/>
<file name="key_exists_args.phpt" role="test"/>
<file name="key_value_args.phpt" role="test"/>
<file name="key_value_deep_string.phpt" role="test"/>
<file name="key_value_exception.phpt" role="test"/>
<file name="key_value_int.phpt" role="test"/>
<file name="key_value_result.phpt" role="test"/>
<file name="uint64_overflow.phpt" role="test"/>
<file name="_files/result.json" role="test"/>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.0.0</min>
</php>
<pearinstaller>
<min>1.4.3</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>simdjson</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2022-08-30</date>
<version>
<release>2.0.3</release>
<api>2.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* Fix error validating package.xml when uploading to PECL due to blank username of lead without a PECL account.
</notes>
</release>
<release>
<date>2022-08-30</date>
<version>
<release>2.0.2</release>
<api>2.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* Fix license metadata in package.xml
</notes>
</release>
<release>
<date>2022-08-29</date>
<version>
<release>2.0.1</release>
<api>2.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* On 32-bit builds, convert decoded 64-bit integers to floats if they would be out of range.
</notes>
</release>
<release>
<date>2022-08-15</date>
<version>
<release>2.0.0</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</license>
<notes>
* Initial PECL release
</notes>
</release>
</changelog>
</package>