-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.xml
143 lines (141 loc) · 4.51 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
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" 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>Payment_PayPal_SOAP</name>
<channel>pear.php.net</channel>
<summary>PayPal SOAP API client</summary>
<description>This package provides an easy-to-use wrapper of PHP 5's SOAP client for use with the PayPal SOAP API.
This package requires PHP 5.1.0 or greater, built with the SOAP extension enabled.
Note: Due to a PHP bug, PHP versions 5.2.2 to 5.2.6 are incompatible with this package.</description>
<lead>
<name>Mike Gauthier</name>
<user>gauthierm</user>
<email>mike@silverorange.com</email>
<active>yes</active>
</lead>
<date>2012-09-25</date>
<time>10:59:39</time>
<version>
<release>0.5.1</release>
<api>0.5.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
* Fixed API endpoint for sandbox signature authentication.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<dir name="data">
<dir name="wsdl">
<dir name="live">
<file name="CoreComponentTypes.xsd" role="data" />
<file name="eBLBaseComponents.xsd" role="data" />
<file name="EnhancedDataTypes.xsd" role="data" />
<file name="PayPalSvc.wsdl" role="data" />
</dir> <!-- /data/wsdl/live -->
<dir name="sandbox">
<file name="CoreComponentTypes.xsd" role="data" />
<file name="eBLBaseComponents.xsd" role="data" />
<file name="EnhancedDataTypes.xsd" role="data" />
<file name="PayPalSvc.wsdl" role="data" />
</dir> <!-- /data/wsdl/sandbox -->
</dir> <!-- /data/wsdl -->
</dir> <!-- /data -->
<dir name="Payment">
<dir name="PayPal">
<dir name="SOAP">
<file name="Error.php" role="php" />
<file name="Exceptions.php" role="php" />
</dir> <!-- /Payment/PayPal/SOAP -->
<file name="SOAP.php" role="php">
<tasks:replace from="@data-dir@" to="data_dir" type="pear-config" />
</file>
</dir> <!-- /Payment/PayPal -->
</dir> <!-- /Payment -->
<dir name="tests">
<file name="AllTests.php" role="test" />
<file name="Client.php" role="test" />
<file name="config.php.dist" role="test" />
<file name="Debug.php" role="test" />
<file name="ExpressCheckout.php" role="test" />
<file name="TestCase.php" role="test">
<tasks:replace from="@php_dir@" to="php_dir" type="pear-config" />
</file>
</dir> <!-- /tests -->
<file name="Payment_PayPal_SOAP-0.5.0.tgz" role="data" />
<file name="README" role="data" />
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.1.0</min>
<exclude>5.2.2</exclude>
<exclude>5.2.3</exclude>
<exclude>5.2.4</exclude>
<exclude>5.2.5</exclude>
<exclude>5.2.6</exclude>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
<extension>
<name>soap</name>
</extension>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>0.4.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-08-05</date>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
* Add 'useLocalWsdl' that can work around bad WSDL files hosted by PayPal
</notes>
</release>
<release>
<version>
<release>0.5.0</release>
<api>0.5.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2012-03-13</date>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
* Add multi-errors handling. Note: this is a BC break if you used the Payment_PayPal_SOAP_ErrorException and Payment_PayPal_SOAP_ExpiredTokenException classes.
</notes>
</release>
<release>
<version>
<release>0.5.1</release>
<api>0.5.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2012-09-25</date>
<license uri="http://www.opensource.org/licenses/mit-license.html">MIT</license>
<notes>
* Fixed API endpoint for sandbox signature authentication.
</notes>
</release>
</changelog>
</package>