-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (54 loc) · 1.43 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
56
{
"name": "swooder/lumenoctane",
"description": "Supercharge your Lumen application's performance.",
"keywords": ["laravel", "octane", "roadrunner", "swoole"],
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/octane/issues",
"source": "https://github.com/laravel/octane"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ~8.0 || ~8.1",
"laminas/laminas-diactoros": "^2.5",
"nesbot/carbon": "^2.60",
"symfony/psr-http-message-bridge": "^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.10|^6.0",
"orchestra/testbench": "^6.16|^7.0",
"phpunit/phpunit": "^9.3",
"spiral/roadrunner": "^2.8.2"
},
"bin": [
"bin/roadrunner-worker",
"bin/swoole-server"
],
"autoload": {
"psr-4": {
"Laravel\\Octane\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Octane\\OctaneServiceProvider"
],
"aliases": {
"Octane": "Laravel\\Octane\\Facades\\Octane"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}