-
Notifications
You must be signed in to change notification settings - Fork 143
/
composer.json
73 lines (73 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "laravel/vapor-core",
"description": "The kernel and invocation handlers for Laravel Vapor",
"keywords": [
"laravel",
"vapor"
],
"homepage": "https://github.com/laravel/vapor-core",
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"aws/aws-sdk-php": "^3.80",
"guzzlehttp/promises": "^1.4|^2.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"hollodotme/fast-cgi-client": "^3.0",
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/queue": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"monolog/monolog": "^1.12|^2.0|^3.2",
"nyholm/psr7": "^1.0",
"riverline/multipart-parser": "^2.0.9",
"symfony/process": "^4.3|^5.0|^6.0|^7.0",
"symfony/psr-http-message-bridge": "^1.0|^2.0|^6.4|^7.0"
},
"require-dev": {
"laravel/octane": "*",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8.0|^9.0|^10.4"
},
"autoload": {
"psr-4": {
"Laravel\\Vapor\\": "src"
},
"files": [
"src/debug.php"
]
},
"autoload-dev": {
"psr-4": {
"Laravel\\Vapor\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Laravel\\Vapor\\VaporServiceProvider"
],
"aliases": {
"Vapor": "Laravel\\Vapor\\Vapor"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}