-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.xml
215 lines (188 loc) · 7.27 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
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
<?xml version="1.0"?>
<package 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>VersionControl_Git</name>
<channel>pear.php.net</channel>
<summary>Provides OO interface to handle Git repository</summary>
<description>
A library that provides an object-oriented interface to handle Git repositories.
The "git" command is utilized via the wrapper class.
</description>
<lead>
<name>Kousuke Ebihara</name>
<user>ebihara</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2017-08-23</date>
<time>21:23:34</time>
<version>
<release>0.5.0</release>
<api>0.5.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache License</license>
<notes>
* Fix bug #18143: Objects now have its name (e.g. filename, directory name..) [ebihara]
* Fix bug #17911: Adde ability to guess path to git binary [ebihara]
* Fix bug #17912: Fix unit test that doesn't work on PHPUnit 3.5.0+ [ebihara]
* Fix bug #17802: Strip terminal escape sequense [ebihara]
* Fix bug #17911: Fix git paths in unit tests [ebihara]
* Fix bug #18270: Remove space between key and value of short-form options [farazdagi]
* Fix date test failures [cweiske]
* Add paths arguments from Git rev-list [Kirill chEbba Chebunin]
* Add composer.json [till]
* Add automated test runs with travis-ci.org [doconnor]
</notes>
<contents>
<dir name="/">
<dir name="VersionControl">
<dir name="Git">
<dir name="Object">
<file name="Blob.php" role="php" />
<file name="Commit.php" role="php" />
<file name="Tree.php" role="php" />
</dir>
<dir name="Util">
<file name="Command.php" role="php" />
<file name="RevListFetcher.php" role="php" />
</dir>
<file name="Component.php" role="php" />
<file name="Object.php" role="php" />
<file name="Exception.php" role="php" />
</dir>
<file name="Git.php" role="php" />
</dir>
<dir name="doc">
<file name="versioncontrol-git.xml" role="doc" />
</dir>
<dir name="tests">
<file name="checkFixtures.php" role="test" />
<file name="VersionControl_GitTest.php" role="test" />
<file name="VersionControl_Git_ObjectTest.php" role="test" />
<file name="VersionControl_Git_Object_CommitTest.php" role="test" />
<file name="VersionControl_Git_Util_CommandTest.php" role="test" />
<file name="README" role="test" />
<file name="VersionControl_Git_ComponentTest.php" role="test" />
<file name="VersionControl_Git_Object_BlobTest.php" role="test" />
<file name="VersionControl_Git_Object_TreeTest.php" role="test" />
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.1</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<date>2017-08-23</date>
<version>
<release>0.5.0</release>
<api>0.5.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache License</license>
<notes>
* Fix bug #18143: Objects now have its name (e.g. filename, directory name..) [ebihara]
* Fix bug #17911: Adde ability to guess path to git binary [ebihara]
* Fix bug #17912: Fix unit test that doesn't work on PHPUnit 3.5.0+ [ebihara]
* Fix bug #17802: Strip terminal escape sequense [ebihara]
* Fix bug #17911: Fix git paths in unit tests [ebihara]
* Fix bug #18270: Remove space between key and value of short-form options [farazdagi]
* Fix date test failures [cweiske]
* Add paths arguments from Git rev-list [Kirill chEbba Chebunin]
* Add composer.json [till]
* Add automated test runs with travis-ci.org [doconnor]
</notes>
</release>
<release>
<date>2010-09-29</date>
<version>
<release>0.4.3</release>
<api>0.4.3</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache License</license>
<notes>
* Fix Bug #17125: VersionControl_Git_Util_Command::execute() doesn't get stderr output [ebihara]
* Fix Bug #17402: Failed to VersionControl_Git_Util_CommandTest in before Git 1.6.2.5 [ebihara]
* Fix Bug #17403: Fail to test creating clone in before Git v1.6.0-rc1 [ebihara]
* Fix Bug #17404: Fail to init repository in before Git v1.5.5.6 [ebihara]
* Fix Bug #17406: Unable to clone into empty directory in before Git 1.6.2-rc0 [ebihara]
* Fix Bug #17910: VersionControl_Git_Util_Command::createCommandString() must be public [ebihara]
* Implement Feature #17283: Add ability to fetch remote branches [ebihara]
* Implement Feature #17401: Add ability to fetch Git version [ebihara]
</notes>
</release>
<release>
<date>2010-02-06</date>
<version>
<release>0.4.2</release>
<api>0.4.2</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache License</license>
<notes>
- Fixed a sentence of comment in the Git/Util/Command.php is not valid English (http://github.com/ebihara/VersionControl_Git/issues/closed#issue/4)
- Rename Git::initialRepository() to Git::initRepository(). For backward compatibility reason, Git::initialRepository() is now alias of Git::initRepository() (http://github.com/ebihara/VersionControl_Git/issues/closed#issue/5)
- Removed fixtures.tar.gz from packaged version (http://github.com/ebihara/VersionControl_Git/issues/closed#issue/6, http://github.com/ebihara/VersionControl_Git/issues/closed#issue/7)
</notes>
</release>
<release>
<date>2010-01-29</date>
<version>
<release>0.4.1</release>
<api>0.4.1</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache License</license>
<notes>
- VersionControl_Git::createClone() now changes directory to new repository (http://github.com/ebihara/VersionControl_Git/issues/closed#issue/1)
- Added package-level exception (fixed in http://github.com/ebihara/VersionControl_Git/issues/closed#issue/2)
- Fixed years in copyright notices that are wrong (fixed in http://github.com/ebihara/VersionControl_Git/issues/closed#issue/3)
</notes>
</release>
<release>
<date>2010-01-22</date>
<version>
<release>0.4.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache License</license>
<notes>
Initial release.
</notes>
</release>
</changelog>
</package>