Download the PHP package raziul/sslcommerz-laravel without Composer

On this page you can find all versions of the php package raziul/sslcommerz-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package sslcommerz-laravel

Sslcommerz Laravel Package

This package provides an easy and convenient way to integrate SSLCommerz payment gateway into your Laravel application. With features like payment processing, payment validation, refunds, and hash verification, this package offers a simple API for developers to quickly implement payment functionality.

🔥 Features

Requirements

Installation

You can install the package via Composer:

Once installed, the service provider will be registered automatically.

Configuration

Add the following environment variables to your .env file:

Optionally, You can publish the configuration file using the following command:

This will publish the sslcommerz.php file to your config directory.

✨ Getting Sandbox Credentials

SSLCommerz credentials are required to use this package. You can get sandbox credentials by following these steps:

  1. Create Sandbox Account: Visit the https://developer.sslcommerz.com/registration/ page to create an account.

  2. Obtain Credentials: After registration, you will receive your Store ID and Store Password via email or from the SSLCommerz dashboard.

  3. Set Up in .env: Copy these credentials and paste them into your .env file as shown in the Configuration step.

[!IMPORTANT] Sandbox credentials are for testing purposes only. You should replace them with your live credentials and change SANDBOX=false before deploying to production.

💡 Usage

1. Defining Callback Routes

To handle different stages of the payment lifecycle, define your callback routes for success, failure, cancellation, and IPN (Instant Payment Notification):

We defined the sslc.success, sslc.failure, sslc.cancel, and sslc.ipn routes according to the configured route names. Now create the SslcommerzController controller and implement the success, failure, cancel, and ipn methods as required.

2. Initiating a Payment

Initiating a payment has never been easier. For example, you can use the following code:

The makePayment method returns an instance of Raziul\Sslcommerz\Data\PaymentResponse class. Check the available methods for more details.

3. Validating a Payment

To validate a payment after a successful transaction:

4. Refunds

If you need to refund a payment, you can do so easily:

You can also check the refund status:

5. Hash Verification

To verify the authenticity of the response from SSLCommerz, use the verifyHash method:

📖 Documentation

You can find detailed documentation, guides and examples on the Wiki.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of sslcommerz-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2||^8.3||^8.4
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0||^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package raziul/sslcommerz-laravel contains the following files

Loading the files please wait ....