forked from laravel/vapor-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.6 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
{
"name": "laravel/vapor-core",
"description": "The kernel and invokation 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.1",
"aws/aws-sdk-php": "^3.80",
"guzzlehttp/guzzle": "^6.3",
"hollodotme/fast-cgi-client": "^3.0",
"illuminate/container": "^6.0",
"illuminate/http": "^6.0",
"illuminate/queue": "^6.0",
"illuminate/support": "^6.0",
"monolog/monolog": "^1.12|^2.0",
"riverline/multipart-parser": "^2.0",
"symfony/process": "^4.2",
"symfony/psr-http-message-bridge": "^1.2",
"zendframework/zend-diactoros": "^2.1"
},
"require-dev": {
"mockery/mockery": "^1.2",
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Laravel\\Vapor\\": "src"
}
},
"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"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}