PHP code example of smart-crowd / simple-sms-drivers

1. Go to this page and download the library: Download smart-crowd/simple-sms-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/ */

    

smart-crowd / simple-sms-drivers example snippets


'providers' => [
  ...
  SmartCrowd\Sms\SmsServiceProvider::class
]

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

'smscenter' => [
    'login'    => env('SMS_CENTER_LOGIN'),
    'password' => env('SMS_CENTER_PASSWORD')
],
'smsru' => [
    'api_id' => env('SMS_RU_API_ID')
],
'smsclub' => [
    'login'    => env('SMS_CLUB_LOGIN'),
    'password' => env('SMS_CLUB_PASSWORD')
],
bash 
php artisan vendor:publish