laravel-cybersource

This package wraps the Cybersource Secure Acceptance & SOAP API in a convenient, easy to use package for Laravel.

View the Project on GitHub deva7mad/laravel-cybersource

Laravel Cybersource SOAP & Secure Acceptance

This package wraps the Cybersource Secure Acceptance & SOAP API in a convenient, easy to use package for Laravel.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Installation

composer require a17mad/laravel-cybersource

If you use laravel < 5.5 you must add this to config\app.php

 Providers Array 
   JustGeeky\LaravelCybersource\Providers\LaravelCybersourceServiceProvider::class

 Facade Array 
   "Cybersource" => JustGeeky\LaravelCybersource\Facades\Cybersource::class

Publishing Configuration

php artisan vendor:publish --tag=cybersource

Usage Of Secure Acceptance Form

Add your Cybersource Profile Credentials
* config\cybersource-profiles.php

- cd into your app 
- php artisan serve
- Visit (http://127.0.0.1:8000/cybersource/payment/form)

Usage SOAP

Example usage using Facade:
* Create New Subscription (Receive Cybersource Profile Token)

$response = Cybersource::createSubscription(
    $paymentToken,
    $productId,
    $productTotal,
    $frequency
);

if($response->isValid()) {
    $responseDetails = $response->getDetails();
    echo $responseDetails['paySubscriptionCreateReply']['subscriptionID'];
} else {
    echo $response->error();
}

Get The Current Subscription Details:

$response = Cybersource::getSubscriptionStatus(
    $subscriptionID
);

if($response->isValid()) {
    $responseDetails = $response->getDetails();
    echo $responseDetails['message'];
} else {
    echo $response->error();
}

Author

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

Support on Beerpay

Hey dude! Help me out for a couple of :beers:!

Beerpay Beerpay