cardinity / client-bundle
Cardinity Credit Card payments bundle for Symfony2
Installs: 15 727
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 2
Open Issues: 3
Requires
- php: >=5.4.0
- cardinity/cardinity-sdk-php: ~1.0
- symfony/validator: ~2.6
Requires (Dev)
- matthiasnoback/symfony-config-test: ~1.0
- phpunit/phpunit: ~4.4
- symfony/dependency-injection: ~2.8
- symfony/http-kernel: ~2.8
This package is not auto-updated.
Last update: 2023-09-19 12:34:06 UTC
README
Deprecation notice
This repository is deprecated.
Installation
Installing via Composer
$ php composer.phar require cardinity/client-bundle
Configuration
To use the bundle you have to define two parameters in your app/config/config.yml
file under cardinity_client
section
# app/config/config.yml cardinity_client: consumer_key: key consumer_secret: secret
Where:
consumer_key
: You can find your Consumer Key and Consumer Secret in Cardinity member’s area.consumer_secret
: You can find your Consumer Key and Consumer Secret in Cardinity member’s area.
Registering the Bundle
You have to add CardinityClientBundle
to your AppKernel.php
:
# app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... other bundles new Cardinity\ClientBundle\CardinityClientBundle() ); return $bundles; } }
Enable credit card processing with 3-D secure DEMO
Include following lines to app/config/routing.yml
:
cardinity_client: resource: "@CardinityClientBundle/Resources/config/routing.yml" prefix: /cardinity
And if you are using PHP built-in web server:
app/console server:run
Try to open browser with address http://localhost:8000/cardinity
.
Usage
Services
This bundle comes with following service which simplifies the Cardinity implementation in your project:
/** @type Cardinity\Client */ $client = $this->container->get('cardinity_client.service.client');
Available Methods
Validates and executes Cardinity query
/** @type Cardinity\Method\ResultObjectInterface $result = $client->call($query);
Available Queries
Payment
Cardinity\Payment\Create($body) Cardinity\Payment\Finalize($paymentId, $authorizeData) Cardinity\Payment\Get($paymentId) Cardinity\Payment\GetAll($limit)
Settlement
Cardinity\Settlement\Create($paymentId, $amount, $description = null) Cardinity\Settlement\Get($paymentId, $settlementId) Cardinity\Settlement\GetAll($paymentId)
Void
Cardinity\Void\Create($paymentId, $description = null) Cardinity\Void\Get($paymentId, $voidId) Cardinity\Void\GetAll($paymentId)
Refund
Cardinity\Refund\Create($paymentId, $amount, $description = null) Cardinity\Refund\Get($paymentId, $refundId) Cardinity\Refund\GetAll($paymentId)
Usage
use Cardinity\Method\Payment; /** @type Cardinity\Client */ $client = $this->container->get('cardinity_client.service.client'); try { /** @type Payment\Payment */ $payment = $client->call(new Payment\Create([ 'amount' => 50.00, 'currency' => 'EUR', 'settle' => false, 'description' => 'some description', 'order_id' => '12345678', 'country' => 'LT', 'payment_method' => Cardinity\Payment\Create::CARD, 'payment_instrument' => [ 'pan' => '4111111111111111', 'exp_year' => 2018, 'exp_month' => 12, 'cvc' => '456', 'holder' => 'Mike Dough' ] ])); /** @type Payment\Payment */ $finalizedPayment = $client->call(new Payment\Finalize( $payment->getId(), $payment->getAuthorizationInformation()->getData() )); } catch (Cardinity\Exception\Declined $e) { // Payment has been declined } catch (Cardinity\Exception\Runtime $e) { // Other type of error happened }