forked from laravel/octane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.57 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
57
58
59
60
61
{
"name": "laravel/octane",
"description": "Supercharge your Laravel 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": "^8.0",
"laravel/framework": "^8.37",
"laminas/laminas-diactoros": "^2.5",
"symfony/psr-http-message-bridge": "^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.16",
"phpunit/phpunit": "^9.3",
"spatie/laravel-ray": "^1.14",
"spiral/roadrunner": "^2.0",
"swoole/ide-helper": "^4.6"
},
"autoload": {
"psr-4": {
"Laravel\\Octane\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Octane\\Tests\\": "tests"
}
},
"bin": [
"bin/roadrunner-worker",
"bin/swoole-server"
],
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Octane\\OctaneServiceProvider"
],
"aliases": {
"Octane": "Laravel\\Octane\\OctaneFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}