-
Notifications
You must be signed in to change notification settings - Fork 64
/
composer.json
52 lines (52 loc) · 1.49 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
{
"name": "bref/laravel-bridge",
"description": "An advanced Laravel integration for Bref, including Octane support.",
"license": "MIT",
"homepage": "https://bref.sh/docs/frameworks/laravel.html",
"keywords": [
"bref",
"serverless",
"aws",
"lambda",
"faas"
],
"require": {
"php": "^8.0",
"aws/aws-sdk-php": "^3.222",
"bref/bref": "^2.1.8",
"bref/laravel-health-check": "^1",
"illuminate/container": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/contracts": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/http": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/queue": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"laravel/octane": "^1.2 || ^2.0",
"riverline/multipart-parser": "^2.0"
},
"require-dev": {
"nunomaduro/larastan": "^2.2",
"orchestra/testbench": "^7.13 || ^9.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bref\\LaravelBridge\\": "src"
},
"files": [
"src/bref-init.php"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Bref\\LaravelBridge\\BrefServiceProvider"
]
}
}
}