-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.xml
110 lines (110 loc) · 4.02 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
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.4.2"
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>Services_ShortURL</name>
<channel>pear.php.net</channel>
<summary>Abstract PHP5 interface for shortening and expanding short URLs</summary>
<description>Short URL services have become enormously popular on the internet. There are, literally, dozens (hundreds?) of these services. Services_ShortURL offers an abstract way of shortening and expanding URLs.</description>
<lead>
<name>Joe Stump</name>
<user>jstump</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2009-04-24</date>
<version>
<release>0.0.1</release>
<api>0.0.1</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes><![CDATA[
* Initial release
]]></notes>
<contents>
<dir name="/">
<dir name="Services">
<file name="ShortURL.php"
role="php" />
<dir name="ShortURL">
<file name="Bitly.php"
role="php" />
<file name="Common.php"
role="php" />
<file name="Digg.php"
role="php" />
<file name="Interface.php"
role="php" />
<file name="Isgd.php"
role="php" />
<file name="Shortie.php"
role="php" />
<file name="TinyURL.php"
role="php" />
<file name="Trim.php"
role="php" />
<file name="Exception.php"
role="php" />
<dir name="Exception">
<file name="CouldNotShorten.php"
role="php" />
<file name="CouldNotExpand.php"
role="php" />
<file name="InvalidOptions.php"
role="php" />
<file name="NotImplemented.php"
role="php" />
<file name="UnknownService.php"
role="php" />
</dir>
</dir>
</dir>
<dir name="tests">
<file name="AllTests.php"
role="test" />
<dir name="Services">
<file name="ShortURLTest.php"
role="test" />
</dir>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.1.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
</pearinstaller>
<package>
<name>HTTP_Request2</name>
<channel>pear.php.net</channel>
<min>0.3.0</min>
</package>
<package>
<name>Net_URL2</name>
<channel>pear.php.net</channel>
<min>0.2.0</min>
</package>
<package>
<name>Validate</name>
<channel>pear.php.net</channel>
<min>0.8.2</min>
</package>
</required>
</dependencies>
<phprelease />
<changelog>
</changelog>
</package>