forked from brefphp/bref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.09 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
{
"name": "bref/bref",
"license": "MIT",
"type": "project",
"description": "Bref is a framework to write and deploy serverless PHP applications on AWS Lambda.",
"homepage": "https://bref.sh",
"keywords": ["bref", "serverless", "aws", "lambda", "faas"],
"autoload": {
"psr-4": {
"Bref\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Bref\\Test\\": "tests"
}
},
"bin": [
"bref"
],
"require": {
"php": "^7.2.0",
"ext-curl": "*",
"ext-json": "*",
"mnapoli/silly": "^1.7",
"symfony/filesystem": "^3.1|^4.0",
"symfony/process": "^3.3|^4.0",
"aws/aws-sdk-php": "^3.44",
"psr/http-message": "^1.0",
"hollodotme/fast-cgi-client": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"zendframework/zend-diactoros": "^1.6|^2.0",
"doctrine/coding-standard": "^5.0",
"phpstan/phpstan": "^0.11.5",
"guzzlehttp/guzzle": "^6.3"
}
}