forked from brefphp/bref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.84 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
65
66
67
{
"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|^5.0",
"symfony/process": "^3.3|^4.0|^5.0",
"psr/http-message": "^1.0",
"hollodotme/fast-cgi-client": "^3.0",
"riverline/multipart-parser": "^2.0.6",
"psr/http-server-handler": "^1.0",
"async-aws/cloud-formation": "^0.3",
"async-aws/lambda": "^0.3"
},
"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"
},
"scripts": {
"test": [
"@static-analysis",
"@unit-tests",
"@code-style"
],
"code-style": [
"vendor/bin/phpcs"
],
"static-analysis": [
"vendor/bin/phpstan analyse"
],
"unit-tests": [
"vendor/bin/phpunit"
]
},
"scripts-descriptions": {
"test": "Run the full test suite for bref",
"code-style": "Run code style checks using PHP_CodeSniffer",
"static-analysis": "Run static analysis using PHPStan",
"unit-tests": "Run unit tests with PHPUnit"
}
}