-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
42 lines (42 loc) · 1.15 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "goavega-software/laravel-azure-servicebus",
"description": "Extending the Laravel queue to support the Microsoft Azure Service Bus Queues & topics.",
"version": "8.0.0",
"type": "library",
"keywords": [
"laravel",
"azure",
"servicebus",
"queues"
],
"license": "MIT",
"authors": [{
"name": "Goavega Team",
"email": "opensource@goavega.com"
}],
"repositories": [{
"type": "git",
"url": "https://github.com/sn123/azure-sdk-for-php.git"
}],
"require": {
"php": ">=7.1.10",
"illuminate/container": ">=8.0.0 <9.0.0",
"illuminate/support": ">=8.0.0 <9.0.0",
"illuminate/encryption": ">=8.0.0 <9.0.0",
"illuminate/queue": ">=8.0.0 <9.0.0",
"goavega-software/azureservicebus": "dev-master"
},
"autoload": {
"psr-4": {
"Goavega\\LaravelAzureServicebus\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Goavega\\LaravelAzureServicebus\\Support\\ServiceProvider"
]
}
}
}