-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
55 lines (55 loc) · 1.35 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "prwnr/laravel-streamer",
"description": "Events streaming package for Laravel that uses Redis 5 streams",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rafal Purwin",
"email": "purwinr@gmail.com"
}
],
"require": {
"ext-json": "*",
"ext-redis": "*",
"php": "^8.1|^8.2",
"illuminate/console": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/redis": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0",
"predis/predis": "^1.1",
"rector/rector": "^1.0",
"laravel/pint": "^1.2"
},
"autoload": {
"psr-4": {
"Prwnr\\Streamer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"aliases": {
"Streamer": "Prwnr\\Streamer\\Facades\\Streamer"
},
"providers": [
"Prwnr\\Streamer\\StreamerProvider"
]
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}