This repository was archived by the owner on Jul 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.xml
166 lines (165 loc) · 11.1 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
158
159
160
161
162
163
164
165
166
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c)
-->
<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" packagerversion="1.9.4" 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>ref</name>
<channel>pecl.php.net</channel>
<summary>Soft and Weak references support in PHP</summary>
<description>
This extension adds Soft and Weak references support to PHP 7 and may serve as a ground for other data structures that require advanced referencing model.
</description>
<lead>
<name>Bogdan Padalko</name>
<user>pinepain</user>
<email>pinepain@gmail.com</email>
<active>yes</active>
</lead>
<date>2018-03-08</date>
<time>14:11:16</time>
<version>
<release>0.6.0</release>
<api>0.6.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
<notes>
Changelist:
- Drop PHP < 7.2 support (BC-breaking);
- Enforce object typehint (BC-breaking);
- Drop windows support (BC-breaking);
</notes>
<contents>
<dir name="/">
<!-- begin files list -->
<file name="stubs/LICENSE" role="doc" />
<file name="stubs/README.md" role="doc" />
<file name="stubs/composer.json" role="doc" />
<file name="stubs/src/AbstractReference.php" role="doc" />
<file name="stubs/src/NotifierException.php" role="doc" />
<file name="stubs/src/SoftReference.php" role="doc" />
<file name="stubs/src/WeakReference.php" role="doc" />
<file name="stubs/src/functions.php" role="doc" />
<file name="tests/.stubs.php" role="test" />
<file name="tests/.testsuite.php" role="test" />
<file name="tests/001-extension-loaded.phpt" role="test" />
<file name="tests/001-extension_info.phpt" role="test" />
<file name="tests/001-verify-method-case.phpt" role="test" />
<file name="tests/001-verify-methods-signature.phpt" role="test" />
<file name="tests/001-verify_extension_entities.phpt" role="test" />
<file name="tests/002-AbstractReference-basic.phpt" role="test" />
<file name="tests/002-AbstractReference-clone.phpt" role="test" />
<file name="tests/002-NotifierException-basic.phpt" role="test" />
<file name="tests/002-WeakReference-basic.phpt" role="test" />
<file name="tests/002-WeakReference-clone.phpt" role="test" />
<file name="tests/002-WeakReference-clone_extended.phpt" role="test" />
<file name="tests/002-WeakReference-closure.phpt" role="test" />
<file name="tests/002-WeakReference-die_in_dtor.phpt" role="test" />
<file name="tests/002-WeakReference-dump_extended.phpt" role="test" />
<file name="tests/002-WeakReference-exception-before-and-from-notifier.phpt" role="test" />
<file name="tests/002-WeakReference-exception-before-notifier.phpt" role="test" />
<file name="tests/002-WeakReference-exception_in_callback.phpt" role="test" />
<file name="tests/002-WeakReference-exception_in_multiple_callbacks.phpt" role="test" />
<file name="tests/002-WeakReference-exception_in_orig_dtor.phpt" role="test" />
<file name="tests/002-WeakReference-exception_in_orig_dtor_and_callback.phpt" role="test" />
<file name="tests/002-WeakReference-extended_dtor_called.phpt" role="test" />
<file name="tests/002-WeakReference-multiple_obj.phpt" role="test" />
<file name="tests/002-WeakReference-multiple_weak.phpt" role="test" />
<file name="tests/002-WeakReference-multiple_with_notify_and_orig_dtor.phpt" role="test" />
<file name="tests/002-WeakReference-notified.phpt" role="test" />
<file name="tests/002-WeakReference-notifier.phpt" role="test" />
<file name="tests/002-WeakReference-notifier_callable_array.phpt" role="test" />
<file name="tests/002-WeakReference-notifier_callable_string.phpt" role="test" />
<file name="tests/002-WeakReference-notifier_change.phpt" role="test" />
<file name="tests/002-WeakReference-notifier_clone_change.phpt" role="test" />
<file name="tests/002-WeakReference-notifier_invalid_callback.phpt" role="test" />
<file name="tests/002-WeakReference-notifier_not_called_after_wr_dies_first.phpt" role="test" />
<file name="tests/002-WeakReference-object-handle-reuse.phpt" role="test" />
<file name="tests/002-WeakReference-orig_dtor_and_notifier_when_wr_dies_first.phpt" role="test" />
<file name="tests/002-WeakReference-orig_dtor_and_notify.phpt" role="test" />
<file name="tests/002-WeakReference-orig_dtor_called.phpt" role="test" />
<file name="tests/002-WeakReference-orig_dtor_called_after_wr_dies_first.phpt" role="test" />
<file name="tests/002-WeakReference-orig_dtor_called_once.phpt" role="test" />
<file name="tests/002-WeakReference-reference-deleted-during-notifier.phpt" role="test" />
<file name="tests/002-WeakReference-serialize_extended_not_allowed.phpt" role="test" />
<file name="tests/002-WeakReference-serialize_not_allowed.phpt" role="test" />
<file name="tests/002-WeakReference-spl_hash_consistent.phpt" role="test" />
<file name="tests/002-WeakReference-spl_object_storage_debug_hash_consistent.phpt" role="test" />
<file name="tests/002-WeakReference-spl_object_storage_hash_consistent.phpt" role="test" />
<file name="tests/003-functions-soft-and-weak.phpt" role="test" />
<file name="tests/003-functions-soft.phpt" role="test" />
<file name="tests/003-functions-weakrefcounted_after_all_refs_died.phpt" role="test" />
<file name="tests/003-functions.phpt" role="test" />
<file name="tests/004-SofReference-basic.phpt" role="test" />
<file name="tests/004-SoftReference-clone.phpt" role="test" />
<file name="tests/004-SoftReference-clone_extended.phpt" role="test" />
<file name="tests/004-SoftReference-closure.phpt" role="test" />
<file name="tests/004-SoftReference-die_in_dtor.phpt" role="test" />
<file name="tests/004-SoftReference-dump_extended.phpt" role="test" />
<file name="tests/004-SoftReference-exception-before-and-from-notifier.phpt" role="test" />
<file name="tests/004-SoftReference-exception-before-notifier.phpt" role="test" />
<file name="tests/004-SoftReference-exception_in_callback.phpt" role="test" />
<file name="tests/004-SoftReference-exception_in_multiple_callbacks.phpt" role="test" />
<file name="tests/004-SoftReference-exception_in_orig_dtor.phpt" role="test" />
<file name="tests/004-SoftReference-exception_in_orig_dtor_and_callback.phpt" role="test" />
<file name="tests/004-SoftReference-extended_dtor_called.phpt" role="test" />
<file name="tests/004-SoftReference-multiple_obj.phpt" role="test" />
<file name="tests/004-SoftReference-multiple_weak.phpt" role="test" />
<file name="tests/004-SoftReference-multiple_with_notify_and_orig_dtor.phpt" role="test" />
<file name="tests/004-SoftReference-notified.phpt" role="test" />
<file name="tests/004-SoftReference-notified_prevent_destoying.phpt" role="test" />
<file name="tests/004-SoftReference-notified_prevent_destoying_forever.phpt" role="test" />
<file name="tests/004-SoftReference-notified_prevent_destoying_forever_with_weak.phpt" role="test" />
<file name="tests/004-SoftReference-notified_prevent_destoying_multiple.phpt" role="test" />
<file name="tests/004-SoftReference-notified_prevent_destoying_with_weak.phpt" role="test" />
<file name="tests/004-SoftReference-notified_with_weak.phpt" role="test" />
<file name="tests/004-SoftReference-notifier.phpt" role="test" />
<file name="tests/004-SoftReference-notifier_callable_array.phpt" role="test" />
<file name="tests/004-SoftReference-notifier_callable_string.phpt" role="test" />
<file name="tests/004-SoftReference-notifier_change.phpt" role="test" />
<file name="tests/004-SoftReference-notifier_clone_change.phpt" role="test" />
<file name="tests/004-SoftReference-notifier_invalid_callback.phpt" role="test" />
<file name="tests/004-SoftReference-notifier_not_called_after_wr_dies_first.phpt" role="test" />
<file name="tests/004-SoftReference-orig_dtor_and_notifier_when_wr_dies_first.phpt" role="test" />
<file name="tests/004-SoftReference-orig_dtor_and_notify.phpt" role="test" />
<file name="tests/004-SoftReference-orig_dtor_called.phpt" role="test" />
<file name="tests/004-SoftReference-orig_dtor_called_after_wr_dies_first.phpt" role="test" />
<file name="tests/004-SoftReference-orig_dtor_called_once.phpt" role="test" />
<file name="tests/004-SoftReference-serialize_extended_not_allowed.phpt" role="test" />
<file name="tests/004-SoftReference-serialize_not_allowed.phpt" role="test" />
<file name="tests/004-SoftReference-spl_hash_consistent.phpt" role="test" />
<file name="tests/004-SoftReference-spl_object_storage_debug_hash_consistent.phpt" role="test" />
<file name="tests/004-SoftReference-spl_object_storage_hash_consistent.phpt" role="test" />
<file name="tests/005-Soft-and-Weak-Reference-exception-before-and-from-notifier.phpt" role="test" />
<file name="tests/005-Soft-and-Weak-Reference-exception-before-notifier.phpt" role="test" />
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="LICENSE" role="doc" />
<file name="php_ref.h" role="src" />
<file name="php_ref_functions.c" role="src" />
<file name="php_ref_functions.h" role="src" />
<file name="php_ref_notifier_exception.c" role="src" />
<file name="php_ref_notifier_exception.h" role="src" />
<file name="php_ref_reference.c" role="src" />
<file name="php_ref_reference.h" role="src" />
<file name="README.md" role="doc" />
<file name="ref.c" role="src" />
<!-- end files list -->
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.2.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>ref</providesextension>
<extsrcrelease/>
</package>