This repository was archived by the owner on Feb 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.xml
More file actions
282 lines (259 loc) · 7.71 KB
/
package.xml
File metadata and controls
282 lines (259 loc) · 7.71 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.7.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>Text_LanguageDetect</name>
<channel>pear.php.net</channel>
<summary>Language detection class</summary>
<description>Text_LanguageDetect can identify 52 human languages from text samples and return confidence scores for each.
</description>
<lead>
<name>Nicholas Pisarro</name>
<user>taak</user>
<email>taak@php.net</email>
<active>no</active>
</lead>
<date>2023-02-27</date>
<version>
<release>1.0.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Fix PHP 8.2 warning: Creation of dynamic property Text_LanguageDetect…
…_Parser::$_trigram is deprecated
The warning found the bug that the class property had the wrong name.
</notes>
<contents>
<dir name="/">
<file name="README.rst" role="doc" />
<dir name="data">
<file name="lang.dat" role="data" />
<file name="unicode_blocks.dat" role="data" />
</dir> <!-- /data -->
<dir name="docs">
<file name="confidence.php" role="doc" />
<file name="example_clui.php" role="doc" />
<file name="example_web.php" role="doc" />
<file name="iso.php" role="doc" />
<file name="languages.php" role="doc" />
<file name="simple.php" role="doc" />
</dir> <!-- /docs -->
<dir name="tests">
<file name="PrivProxy.php" role="test" />
<file name="Text_LanguageDetectTest.php" role="test" />
<file name="Text_LanguageDetect_ISO639Test.php" role="test" />
</dir> <!-- /tests -->
<dir name="Text">
<dir name="LanguageDetect">
<file name="Exception.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="ISO639.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="Parser.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir> <!-- /Text/LanguageDetect -->
<file name="LanguageDetect.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
<tasks:replace from="@data_dir@" to="data_dir" type="pear-config" />
</file>
</dir> <!-- /Text -->
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.4</min>
</php>
<pearinstaller>
<min>1.9.0</min>
</pearinstaller>
<extension>
<name>pcre</name>
</extension>
</required>
<optional>
<extension>
<name>mbstring</name>
</extension>
</optional>
</dependencies>
<phprelease>
<filelist>
<install as="lang.dat" name="data/lang.dat" />
<install as="unicode_blocks.dat" name="data/unicode_blocks.dat" />
</filelist>
</phprelease>
<changelog>
<release>
<version>
<release>1.0.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2023-02-27</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Fix PHP 8.2 warning: Creation of dynamic property Text_LanguageDetect…
…_Parser::$_trigram is deprecated
The warning found the bug that the class property had the wrong name.
</notes>
</release>
<release>
<version>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2020-05-17</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
- Support PHP 7.4
</notes>
</release>
<release>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2017-03-02</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
- Add PHP5 constructors
- Fix bug #21189: Language detection on PHP7 broken
- Fix coding style problems
- BC break: Add real visibility to properties and methods
</notes>
</release>
<release>
<version>
<release>0.3.0</release>
<api>0.3.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2012-01-16</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
- BC break: Return lowercase language names
- BC break: Use exceptions instead of PEAR_Error
- Implement request #19221: Return ISO 639-1 or ISO 639-2 language codes
</notes>
</release>
<release>
<version>
<release>0.2.3</release>
<api>0.2.3</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2008-07-30</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>updated package requirements
</notes>
</release>
<release>
<version>
<release>0.2.2</release>
<api>0.2.2</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2008-07-30</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>* Fixed Bug #13385
</notes>
</release>
<release>
<version>
<release>0.2.1</release>
<api>0.2.1</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2006-12-03</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>* Fix: Now uses conventionalized include path
* Fix: Won't cause error if input is purely symbol-range characters
* Better error reporting if error in unicode db loading
</notes>
</release>
<release>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2006-01-18</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>* Added unicode block range identification
* unicode block ranges used to optimize language detection by pre-selecting which known language trigram profiles in the database to attempt comparison with
* Added several utf8/unicode utility functions
* new Parser class for building data profiles from text samples
* Fix: mb_convert_encoding() now used correctly
* Fix: basic case-folding for Cyrillic alphabet implemented
</notes>
</release>
<release>
<version>
<release>0.1.1</release>
<api>0.1.1</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2006-01-06</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>* Output of clustering now cached
* Fix: better error checking in clustering functions
* Fix: clusteredSearch() now handles null strings gracefully
* Compare order is preserved in clusteredSearch() results
* Slight speed improvement to utf8 iterator
</notes>
</release>
<release>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2006-01-04</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>Initial PEAR release
</notes>
</release>
</changelog>
</package>