-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.18 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
{
"name": "laravie/stream",
"description": "Common Component using ReactPHP Stream",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laravie\\Stream\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravie\\Stream\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"illuminate/support": "^8.75 || ^9.34 || ^10.0",
"react/stream": "^1.1"
},
"require-dev": {
"league/climate": "^3.5",
"orchestra/testbench": "^6.25.1 || ^7.10.1 || ^8.0",
"phpstan/phpstan": "^1.10.1",
"phpunit/phpunit": "^9.6"
},
"suggest": {
"league/climate": "Required to use Console Logger (^3.5)."
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"Laravie\\Stream\\Laravel\\StreamServiceProvider"
]
}
},
"minimum-stability": "dev"
}