PHP code example of hayrican / laravel-azure-service-bus

1. Go to this page and download the library: Download hayrican/laravel-azure-service-bus 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/ */

    

hayrican / laravel-azure-service-bus example snippets


'connections' => [
    // Other connections...

    'azure-service-bus' => [
        'driver' => 'azure-service-bus',
        'namespace' => env('AZURE_SERVICE_BUS_NAMESPACE'),
        'queue' => env('AZURE_SERVICE_BUS_QUEUE'),
        'key_name' => env('AZURE_SERVICE_KEY_NAME'),
        'key' => env('AZURE_SERVICE_KEY_VALUE'),
    ]
],