Skip to content

Commit cdd75eb

Browse files
committed
June release : Update the version
1 parent fdeb18d commit cdd75eb

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,39 @@ The CyberSource PHP client provides convenient access to the [CyberSource REST A
99
* Enable cURL PHP Extension
1010
* Enable JSON PHP Extension
1111
* Enable MBString PHP Extension
12-
* Enable PHP_APCU PHP Extension. You will need to download it for your platform (Windows/Linux/Mac)
12+
* Enable PHP_APCU PHP Extension. You will need to download it for your platform (Windows/Linux/Mac)
1313
* [CyberSource Account](https://developer.cybersource.com/api/developer-guides/dita-gettingstarted/registration.html)
1414
* [CyberSource API Keys](https://prod.developer.cybersource.com/api/developer-guides/dita-gettingstarted/registration/createCertSharedKey.html)
15-
15+
1616
## Dependencies
1717
* PHP-JWT : JWT token Generation
1818
* CURL : Http communication with the payment gateway
19-
* PHP_APCU : Caching
19+
* PHP_APCU : Caching
2020
* phpunit-5.7.25 : unit testing
2121
* phpunit-5.7.25 code coverage : Sonar coverage
2222

2323
## Installation
2424
### Composer
2525
We recommend using [`Composer`](http://getcomposer.org). *(Note: we never recommend you
26-
override the new secure-http default setting)*.
26+
override the new secure-http default setting)*.
2727
*Update your composer.json file as per the example below and then run
2828
`composer update`.*
2929

3030
```json
3131
{
3232
"require": {
3333
"php": ">=5.6",
34-
"cybersource/rest-client-php": "0.0.32"
34+
"cybersource/rest-client-php": "0.0.33"
3535
}
3636
}
3737
```
3838

3939
## Registration & Configuration
4040
Use of this SDK and the CyberSource APIs requires having an account on our system. You can find details of getting a test account and creating your keys [here](https://developer.cybersource.com/api/developer-guides/dita-gettingstarted/registration.html)
4141

42-
Once you have your keys, simply load them into the appropriate variables in your code, as per the below sample code dealing with the authentication part of the API request.
42+
Once you have your keys, simply load them into the appropriate variables in your code, as per the below sample code dealing with the authentication part of the API request.
4343

44-
Remember this SDK is for use in server-side PHP applications that access the CyberSource REST API and credentials should always be securely stored and accessed appropriately.
44+
Remember this SDK is for use in server-side PHP applications that access the CyberSource REST API and credentials should always be securely stored and accessed appropriately.
4545

4646
## SDK Usage Examples and Sample Code
4747
To get started using this SDK, it's highly recommended to download our sample code repository:
@@ -67,11 +67,11 @@ Further information on MetaKey can be found in [New Business Center User Guide](
6767
## To set your API credentials for an API request, configure the following information in ExternalConfiguration.php file:
6868

6969
Create a file in your application `ExternalConfiguration.php` inside a `Resources` folder and configure the following information as per requirement similar to [**this one**](https://github.com/CyberSource/cybersource-rest-samples-php/blob/master/Resources/ExternalConfiguration.php).
70-
71-
#### For Http Signature Authentication
72-
70+
71+
#### For Http Signature Authentication
72+
7373
Configure the following information in `ExternalConfiguration.php` file
74-
74+
7575
* Authentication Type: Merchant should enter "HTTP_SIGNATURE" for HTTP authentication mechanism.
7676
* Merchant ID: Merchant will provide the merchant ID, which has taken from EBC portal.
7777
* MerchantSecretKey: Merchant will provide the secret Key value, which has taken from EBC portal.
@@ -102,7 +102,7 @@ Further information on MetaKey can be found in [New Business Center User Guide](
102102
#### For Jwt Signature Authentication
103103

104104
Configure the following information in the `ExternalConfiguration.php` file
105-
105+
106106
* Authentication Type: Merchant should enter "JWT" for JWT authentication mechanism.
107107
* Merchant ID: Merchant will provide the merchant ID, which was taken from EBC portal.
108108
* keyAlias: Alias of the Merchant ID, to be used while generating the JWT token.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cybersource/rest-client-php",
3-
"version": "0.0.32",
3+
"version": "0.0.33",
44
"description": "Client SDK for CyberSource REST APIs",
55
"keywords": [
66
"cybersource", "payments", "ecommerce", "merchant", "merchants", "authorize", "visa", "payment", "payment-gateway", "payment-integration", "payment-module", "payment-processing", "payment-service", "payment-methods"

0 commit comments

Comments
 (0)