mdsami / larapaytm
Paytm Integration with Laravel
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:project
Requires
- php: 7.1.3
- illuminate/contracts: 5.6
- illuminate/support: 5.6
This package is auto-updated.
Last update: 2024-10-25 06:18:24 UTC
README
Paytm Integration with Laravel
For Laravel 5.6 and above
Introduction
Integrate Paytm wallet in your laravel application easily with this package. This package uses official Paytm PHP SDK's.
License
Laravel Paytm Wallet open-sourced software licensed under the MIT license
Getting Started
To get started add the following package to your composer.json
file using this command.
composer require mdsami/larapaytm
Configuring
Note: For Laravel 5.5 and above auto-discovery takes care of below configuration.
When composer installs Laravel Paytm Wallet library successfully, register the MdSami\LaraPaytm\LaraPaytmServiceProvider
in your config/app.php
configuration file.
'providers' => [ // Other service providers... MdSami\LaraPaytm\LaraPaytmServiceProvider::class, ],
Also, add the LaraPaytm
facade to the aliases
array in your app
configuration file:
'aliases' => [ // Other aliases 'LaraPaytm' => MdSami\LaraPaytm\Facades\LaraPaytm::class, ],