Download the PHP package metaer/merchant-sdk-php without Composer
On this page you can find all versions of the php package metaer/merchant-sdk-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download metaer/merchant-sdk-php
More information about metaer/merchant-sdk-php
Files in metaer/merchant-sdk-php
Package merchant-sdk-php
Short Description PayPal Merchant SDK for PHP
License Apache-2.0
Homepage https://developer.paypal.com
Informations about the package merchant-sdk-php
PayPal PHP Merchant SDK
The merchant SDK can be used for integrating with the Express Checkout, Mass Pay, Web Payments Pro APIs.
TLSv1.2 Update
The Payment Card Industry (PCI) Council has mandated that early versions of TLS be retired from service. All organizations that handle credit card information are required to comply with this standard. As part of this obligation, PayPal is updating its services to require TLS 1.2 for all HTTPS connections. At this time, PayPal will also require HTTP/1.1 for all connections. Click here for more information
A new
mode
has been created to test if your server/machine handles TLSv1.2 connections. Please usetls
mode instead ofsandbox
to verify. You can return back tosandbox
mode once you have verified. Please have a look at this Sample Configuration.
POODLE Update
- Because of the Poodle vulnerability, PayPal has disabled SSLv3.
-
To enable TLS encryption, the changes were made to PPHttpConfig.php in SDK Core to use a cipher list specific to TLS encryption.
- There are two primary changes done to curl options:
All these changes are included in the recent release, along with many other bug fixes.
Support
Please contact PayPal Technical Support for any live or account issues.
Prerequisites
PayPal's PHP Merchant SDK requires
- PHP 5.3 and above
- curl/openssl PHP extensions
Running the sample
To run the bundled sample, first copy the samples folder to your web server root. You will then need to install the SDK as a dependency using composer (PHP V5.3+ only).
Using the SDK
To use the SDK,
-
Create a
composer.json
file with the following contents. - Install the SDK as a dependency using
composer
. To downloadcomposer
, follow installation instructions provided in Composer documentation. - Require
PPBootStrap.php
in your application. - Choose how you would like to configure the SDK - You can either
- Create a hashmap containing configuration parameters and pass it to the service object OR
- Create a
sdk_config.ini
file and set the PP_CONFIG_PATH constant to point to the directory where this file exists.
- Instantiate a service wrapper object and a request object as per your project's needs.
- Invoke the appropriate method on the service object.
For example,
Authentication
The SDK provides multiple ways to authenticate your API call.
SDK Configuration
The SDK allows you to configure the following parameters-
- Integration mode (sandbox / live)
- (Multiple) API account credentials.
- HTTP connection parameters
- Logging
Dynamic configuration values can be set by passing a map of credential and config values (if config map is passed the config file is ignored)
Alternatively, you can configure the SDK via the sdk_config.ini file.
You can refer full list of configuration parameters in wiki page.
Instant Payment Notification (IPN)
Please refer to the IPN-README in 'samples/IPN' directory.
Links
- API Reference - https://developer.paypal.com/webapps/developer/docs/classic/api/#merchant
- If you need help using the SDK, a new feature that you need or have a issue to report, please visit https://github.com/paypal/merchant-sdk-php/issues