hoya / masterpass-bundle
Masterpass Bundle
Installs: 484
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.0.0
- gree/jose: 2.2.1
- paragonie/random_compat: ^2.0
- psr/log: ~1.0
- symfony/framework-bundle: ^3.0
- symfony/security-csrf: ^3.4
- symfony/templating: ^2.7|^3.0
- symfony/twig-bundle: ^3.0
Requires (Dev)
- sensio/framework-extra-bundle: 3.0.16
- symfony/asset: ^2.7|^3.0
- symfony/browser-kit: ~2.3|~3.0
- symfony/css-selector: ~2.3|~3.0
- symfony/finder: ~2.3|~3.0
- symfony/form: ~2.3|~3.0
- symfony/phpunit-bridge: ^3.2
- symfony/serializer: ~2.7|~3.0
- symfony/validator: ~2.3|~3.0
- symfony/yaml: ~2.3|~3.0
This package is not auto-updated.
Last update: 2025-03-30 17:18:18 UTC
README
This Symfony 2 bundle implements the backend calls for Masterpass V7 checkout - Standard and Express flows. For complete Masterpass docs, refer https://developer.mastercard.com/product/masterpass
Install
Add HoyaMasterpassBundle in your composer.json:
{ "require": { "hoya/masterpass-bundle": "~3.0.0" } }
Register the bundle in your appkernel.php file
return array( // ... new Hoya\MasterpassBundle\HoyaMasterpassBundle(), // ... );
Setup your config.yml file
# app/config/config.yml hoya_masterpass: production_mode: false checkoutidentifier: checkout_id keys: consumerkey: consumer_key_value keystorepath: "%kernel.root_dir%/cert/csr_file.p12" keystorepassword: changeit
Usage
You may follow some sample code here
Handling Errors
Any error which may happen while calling Masterpass APIs throws an Exception. Hence, it is highly recommended to use try / catch block In addition, you can check further details on symfony logs.
try { $payment = $this->get('hoya_masterpass_service')->getPaymentData($callback, '1234'); } catch (\Exception $e) { $this->get('session')->getFlashBag()->add('error', $e->getMessage()); }
Running the Tests
Install the Composer dev
dependencies:
php composer.phar install --dev
Then, run the test suite using PHPUnit:
./phpunit