This repository was archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.xml
More file actions
110 lines (110 loc) · 3.25 KB
/
package.xml
File metadata and controls
110 lines (110 loc) · 3.25 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
<?xml version="1.0"?>
<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>apn</name>
<channel>pecl.php.net</channel>
<summary>An extension for sending push notifications to iOS and OS X devices from within your PHP code</summary>
<description>
apn is a PHP extension to introduce simple yet powerful interface for sending push notifications to iOS
and OS X devices from within your PHP code
</description>
<lead>
<name>Anton Dobkin</name>
<user>adobkin</user>
<email>adobkin@php.net</email>
<active>yes</active>
</lead>
<date>2014-02-20</date>
<version>
<release>1.0.3</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license/3_01.txt">PHP 3.01</license>
<notes>
- Fixed typo in constant name (APN_PODUCTION -> APN_PRODUCTION)
- Incorrect warning message in apn_feedback()
- Added "invalid token" warning in apn_send()
- TSRM fixes
</notes>
<contents>
<dir name="/">
<file role="doc" name="CREDITS"/>
<file role="doc" name="README.md"/>
<file role="doc" name="LICENSE"/>
<file role="src" name="apn.ini"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="php_apn.c"/>
<file role="src" name="php_apn.h"/>
<dir name="docs">
<file role="doc" name="example.phps"/>
<file role="doc" name="feedback.phps"/>
<file role="doc" name="documentation.php"/>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.4.0a1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>apn</providesextension>
<extsrcrelease>
<configureoption default="no" name="with-apn" prompt="libcapn installation prefix"/>
</extsrcrelease>
<changelog>
<release>
<version>
<date>2014-02-20</date>
<release>1.0.3</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
- Fixed typo in constant name (APN_PODUCTION -> APN_PRODUCTION)
- Incorrect warning message in apn_feedback()
- Added "invalid token" warning in apn_send()
- TSRM fixes
</notes>
</release>
<release>
<version>
<date></date>
<release>1.0.2</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
- Fixed package.xml
</notes>
</release>
<release>
<version>
<date></date>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
- Initial release
</notes>
</release>
</changelog>
</package>