-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 953 Bytes
/
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
43
44
{
"name": "goodway/laravel-nats",
"description": "Nats queue driver with client for Laravel",
"keywords": [
"php",
"nats",
"github",
"laravel",
"Open Source",
"jetstream",
"laravel 8",
"laravel 9",
"laravel 10",
"laravel 11"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Goodway\\LaravelNats\\": "src/"
}
},
"authors": [
{
"name": "Serge Goodway",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"basis-company/nats": "^0.26.2",
"nesbot/carbon": "^2.67"
},
"require-dev": {
"laravel/framework": "^8.0|^9.0|^10.0|^11.0"
},
"extra": {
"laravel": {
"providers": [
"Goodway\\LaravelNats\\LaravelNatsProvider"
]
}
}
}