hayrican/laravel-azure-service-bus
最新稳定版本:1.1.0
Composer 安装命令:
composer require hayrican/laravel-azure-service-bus
包简介
Laravel Queue driver for Azure Service Bus
README 文档
README
Installation
1. Install the package via Composer:
composer require hayrican/laravel-azure-service-bus
3. Configure .env file:
In your .env file, set the Azure Service Bus connection details:
AZURE_SERVICE_BUS_NAMESPACE=<your-namespace> AZURE_SERVICE_BUS_QUEUE=<your-queue-name> AZURE_SERVICE_KEY_NAME=<your-key-name> AZURE_SERVICE_KEY_VALUE=<your-key>
4. Define Azure Service Bus Configuration
Update your config/queue.php file to include the following configuration for the Azure Service Bus driver:
'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'), ] ],
License
This project is licensed under the MIT License - see the License File for details
Author
Hayri Can BARÇIN
Email: Contact Me
统计信息
- 总下载量: 989
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-12-18