for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace konectdigital\Mpesa\Console;
use Illuminate\Console\Command;
class InstallMpesaPackage extends Command
{
protected $signature = 'mpesa:install';
protected $description = 'Install Mpesa Package';
public function handle()
$this->info('Installing MpesaPackage...');
$this->info('Publishing configuration...');
$this->call('vendor:publish', [
'--provider' => "Konectdigital\Mpesa\MpesaServiceProvider",
'--tag' => 'config',
]);
$this->info('Installed Mpesa');
}