Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
config
:
paystack-20250405021629.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* * This file is part of the Laravel Paystack package. * * (c) Prosper Otemuyiwa <prosperotemuyiwa@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ /** * Public Key From Paystack Dashboard * */ 'publicKey' => env('PAYSTACK_PUBLIC_KEY', null), /** * Secret Key From Paystack Dashboard * */ 'secretKey' => env('PAYSTACK_SECRET_KEY', null), /** * Paystack Payment URL * */ 'paymentUrl' => env('PAYSTACK_PAYMENT_URL', null), /** * Optional email address of the merchant * */ 'merchantEmail' => env('MERCHANT_EMAIL', null), ];