Skip to content
This repository was archived by the owner on Nov 24, 2017. It is now read-only.

Commit ed6d64f

Browse files
Housekeeping.
1 parent e890b5f commit ed6d64f

File tree

3 files changed

+121
-0
lines changed

3 files changed

+121
-0
lines changed

ChangeLog.markdown

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
PHPUnit_TicketListener_Jira 1.0
2+
===============================
3+
4+
This is the list of changes for the PHPUnit_TicketListener_Jira 1.0 release series.
5+
6+
PHPUnit_TicketListener_Jira 1.0.0
7+
---------------------------------
8+
9+
* Initial release.

LICENSE

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
PHPUnit
2+
3+
Copyright (c) 2002-2011, Sebastian Bergmann <[email protected]>.
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions
8+
are met:
9+
10+
* Redistributions of source code must retain the above copyright
11+
notice, this list of conditions and the following disclaimer.
12+
13+
* Redistributions in binary form must reproduce the above copyright
14+
notice, this list of conditions and the following disclaimer in
15+
the documentation and/or other materials provided with the
16+
distribution.
17+
18+
* Neither the name of Sebastian Bergmann nor the names of his
19+
contributors may be used to endorse or promote products derived
20+
from this software without specific prior written permission.
21+
22+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26+
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33+
POSSIBILITY OF SUCH DAMAGE.

package.xml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<package packagerversion="1.4.10" version="2.0"
3+
xmlns="http://pear.php.net/dtd/package-2.0"
4+
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
5+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6+
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
7+
http://pear.php.net/dtd/tasks-1.0.xsd
8+
http://pear.php.net/dtd/package-2.0
9+
http://pear.php.net/dtd/package-2.0.xsd">
10+
<name>PHPUnit_TicketListener_Jira</name>
11+
<channel>pear.phpunit.de</channel>
12+
<summary>A ticket listener for PHPUnit that interacts with the Jira issue API.</summary>
13+
<description>A ticket listener for PHPUnit that interacts with the Jira issue API.</description>
14+
<lead>
15+
<name>Laura Beth Lincoln Denker</name>
16+
<user>elblinkin</user>
17+
<email>[email protected]</email>
18+
<active>yes</active>
19+
</lead>
20+
<lead>
21+
<name>Sebastian Bergmann</name>
22+
<user>sb</user>
23+
<email>[email protected]</email>
24+
<active>yes</active>
25+
</lead>
26+
<date>2011-MM-DD</date>
27+
<version>
28+
<release>1.0.0</release>
29+
<api>1.0.0</api>
30+
</version>
31+
<stability>
32+
<release>stable</release>
33+
<api>stable</api>
34+
</stability>
35+
<license>BSD License</license>
36+
<notes>http://github.com/sebastianbergmann/phpunit-ticketlistener-jira/blob/master/README.markdown</notes>
37+
<contents>
38+
<dir name="/">
39+
<dir name="PHPUnit">
40+
<dir name="Extensions">
41+
<dir name="TicketListener">
42+
<dir name="Jira">
43+
<file baseinstalldir="/" name="Client.php" role="php">
44+
<tasks:replace from="@package_version@" to="version" type="package-info" />
45+
</file>
46+
<file baseinstalldir="/" name="StatusConverter.php" role="php">
47+
<tasks:replace from="@package_version@" to="version" type="package-info" />
48+
</file>
49+
</dir>
50+
<file baseinstalldir="/" name="Jira.php" role="php">
51+
<tasks:replace from="@package_version@" to="version" type="package-info" />
52+
</file>
53+
</dir>
54+
</dir>
55+
</dir>
56+
<file baseinstalldir="/" name="ChangeLog.markdown" role="doc"/>
57+
<file baseinstalldir="/" name="LICENSE" role="doc"/>
58+
</dir>
59+
</contents>
60+
<dependencies>
61+
<required>
62+
<php>
63+
<min>5.2.7</min>
64+
</php>
65+
<pearinstaller>
66+
<min>1.9.3</min>
67+
</pearinstaller>
68+
<package>
69+
<name>PHPUnit</name>
70+
<channel>pear.phpunit.de</channel>
71+
<min>3.6.0</min>
72+
</package>
73+
<extension>
74+
<name>soap</name>
75+
</extension>
76+
</required>
77+
</dependencies>
78+
<phprelease/>
79+
</package>

0 commit comments

Comments
 (0)