PHP code example of lbhurtado / simple-txtcmdr-drivers

1. Go to this page and download the library: Download lbhurtado/simple-txtcmdr-drivers library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lbhurtado / simple-txtcmdr-drivers example snippets


'providers' => [
  ...
  LBHurtado\SMS\SMSServiceProvider::class
]

'aliases' => [
  ...
  'SMS' => SimpleSoftwareIO\SMS\Facades\SMS::class

'telerivet' => [
    'api_key'    => env('TELERIVET_API_KEY'),
    'project_id' => env('TELERIVET_PROJECT_ID')
],
'sun' => [
    'user' => env('SUN_USER'),
    'pass' => env('SUN_PASS'),
    'mask' => env('SUN_MASK'),
    'login_url' => 'http://mcpro.sun-solutions.ph/emcpro/login.aspx'
],
json
autoload: {
	classmap: [
		database,
		vendor/telerivet/telerivet-php-client/telerivet.php
	],
	...
bash 
php artisan vendor:publish