-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.xml
155 lines (153 loc) · 4.24 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
<?xml version="1.0" encoding="UTF-8"?>
<package version="2.1" xmlns="http://pear.php.net/dtd/package-2.1" 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.1 http://pear.php.net/dtd/package-2.1.xsd">
<name>UNL_LDAP</name>
<channel>pear.unl.edu</channel>
<summary>LDAP directory services for UNL</summary>
<description>This package simplifies connecting to UNL's LDAP directory for searching for data.</description>
<lead>
<name>Brett Bieber</name>
<user>saltybeagle</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-06-24</date>
<time>08:12:05</time>
<version>
<release>0.5.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www1.unl.edu/wdn/wiki/Software_License">BSD</license>
<notes>Feature Release
Communication with the UNL LDAP servers now uses StarTLS and LDAP v3
Clients may need to modify settings to connect securely. See the IDM LDAP
documentation for more information: https://idm.unl.edu/using-unls-ldap-service
</notes>
<contents>
<dir name="/">
<dir name="docs" baseinstalldir="/">
<dir name="examples">
<file role="doc" name="dept_search.php"/>
<file role="doc" name="simpleSearch.php"/>
<file role="doc" name="twodirectories.php"/>
</dir>
</dir>
<dir name="src" baseinstalldir="/">
<dir name="UNL">
<dir name="LDAP">
<dir name="Entry">
<file role="php" name="Attribute.php"/>
</dir>
<file role="php" name="Entry.php"/>
<file role="php" name="Exception.php"/>
<file role="php" name="People.php"/>
<file role="php" name="Result.php"/>
</dir>
<file role="php" name="LDAP.php"/>
</dir>
</dir>
<dir name="tests" baseinstalldir="/">
<file role="test" name="UNL_LDAPTest.php"/>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.1.6</min>
</php>
<pearinstaller>
<min>1.5.4</min>
</pearinstaller>
</required>
</dependencies>
<phprelease/>
<changelog>
<release>
<version>
<release>0.1.0</release>
<api>0.1.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2008-02-01</date>
<license uri="http://www1.unl.edu/wdn/wiki/Software_License">BSD</license>
<notes>
First release.
</notes>
</release>
<release>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2008-03-26</date>
<license uri="http://www1.unl.edu/wdn/wiki/Software_License">BSD</license>
<notes>
API change feature release
* Remove singleton - multiple connections and multiple directories can now be used.
* Add setOptions(), connect(), disconnect(), &getLink() methods.
* Implement destructor which disconnects from the server.
</notes>
</release>
<release>
<version>
<release>0.3.0</release>
<api>0.3.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2008-11-10</date>
<license uri="http://www1.unl.edu/wdn/wiki/Software_License">BSD</license>
<notes>
Feature release:
Issue #8: Throw exception on connection errors.
Bump stability to beta.
</notes>
</release>
<release>
<version>
<release>0.4.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-05-11</date>
<license uri="http://www1.unl.edu/wdn/wiki/Software_License">BSD</license>
<notes>
Feature release:
Add backup LDAP server.
Increase PHP dependency to 5.1.6
</notes>
</release>
<release>
<version>
<release>0.4.1</release>
<api>0.4.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-04-23</date>
<license uri="http://www1.unl.edu/wdn/wiki/Software_License">BSD</license>
<notes>
Bugfix Release:
* Switch to protected attributes instead of private for easier serialization.
</notes>
</release>
</changelog>
</package>