-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "ignited/laravel-serverless",
"license": "MIT",
"type": "project",
"description": "Allows you to run Laravel in Lambda",
"homepage": "https://github.com/ignited/laravel-serverless",
"keywords": ["bref", "serverless", "lambda", "laravel", "vapor"],
"require": {
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/contracts": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/pipeline": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/http": "~5.8.0|^6.0|^7.0|^8.0|^9.0",
"bref/bref": "~0.5",
"aws/aws-sdk-php": "^3.86"
},
"require-dev": {
"mockery/mockery": "^1.2",
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0|^8.5|^9.3.3"
},
"autoload": {
"psr-4": {
"Ignited\\LaravelServerless\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ignited\\LaravelServerless\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Ignited\\LaravelServerless\\LaravelServerlessServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}