You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-22Lines changed: 18 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,7 @@
3
3
4
4
## Introduction
5
5
6
-
### ⚠️ Beta Release Notice
7
-
8
-
This version is considered a **beta release**. While we have done our best to ensure stability and functionality, there may still be bugs, incomplete features, or breaking changes in future updates.
9
-
10
-
#### Important Notes
6
+
### Important Notes
11
7
12
8
-**Available Features:** This SDK currently contains only 3 of PayPal's API endpoints. Additional endpoints and functionality will be added in the future.
13
9
-**API Changes:** Expect potential changes in APIs and features as we finalize the product.
@@ -27,23 +23,23 @@ Find out more here: [https://developer.paypal.com/docs/api/orders/v2/](https://d
27
23
Run the following command to install the package and automatically add the dependency to your composer.json file:
28
24
29
25
```bash
30
-
composer require "paypal/paypal-server-sdk:0.7.0"
26
+
composer require "paypal/paypal-server-sdk:1.0.0"
31
27
```
32
28
33
29
Or add it to the composer.json file manually as given below:
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.7.0/doc/client.md)
42
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/1.0.0/doc/client.md)
47
43
48
44
The following parameters are configurable for the API Client:
49
45
@@ -59,8 +55,8 @@ The following parameters are configurable for the API Client:
59
55
|`retryOnTimeout`|`bool`| Whether to retry on request timeout.<br>*Default*: `true`|
60
56
|`httpStatusCodesToRetry`|`array`| Http status codes to retry against.<br>*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524`|
61
57
|`httpMethodsToRetry`|`array`| Http methods to retry against.<br>*Default*: `'GET', 'PUT'`|
62
-
|`loggingConfiguration`|[`LoggingConfigurationBuilder`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.7.0/doc/logging-configuration-builder.md)| Represents the logging configurations for API calls |
63
-
|`clientCredentialsAuth`|[`ClientCredentialsAuth`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.7.0/doc/auth/oauth-2-client-credentials-grant.md)| The Credentials Setter for OAuth 2 Client Credentials Grant |
58
+
|`loggingConfiguration`|[`LoggingConfigurationBuilder`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/1.0.0/doc/logging-configuration-builder.md)| Represents the logging configurations for API calls |
59
+
|`clientCredentialsAuth`|[`ClientCredentialsAuth`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/1.0.0/doc/auth/oauth-2-client-credentials-grant.md)| The Credentials Setter for OAuth 2 Client Credentials Grant |
64
60
65
61
The API client can be initialized as follows:
66
62
@@ -97,21 +93,21 @@ The SDK can be configured to use a different environment for making API calls. A
97
93
98
94
This API uses the following authentication schemes.
0 commit comments