forked from brefphp/laravel-bridge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.07 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
{
"name": "bref/laravel-bridge",
"license": "MIT",
"type": "project",
"description": "Package that makes Laravel work on AWS Lambda with Bref",
"homepage": "https://bref.sh/docs/frameworks/laravel.html",
"keywords": ["bref", "serverless", "aws", "lambda", "faas"],
"autoload": {
"psr-4": {
"Bref\\LaravelBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bref\\Test\\LaravelBridge\\": "tests"
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"bref/bref": "^1.0",
"illuminate/queue": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"aws/aws-sdk-php": "^3.134"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mnapoli/hard-mode": "^0.3.0",
"phpstan/phpstan": "^0.12.0",
"symfony/filesystem": "^5.0",
"symfony/process": "^5.0"
},
"extra": {
"laravel": {
"providers": [
"Bref\\LaravelBridge\\BrefServiceProvider"
]
}
}
}