-
-
Notifications
You must be signed in to change notification settings - Fork 365
/
composer.json
75 lines (75 loc) · 2.13 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
68
69
70
71
72
73
74
75
{
"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"
}
},
"autoload-dev": {
"psr-4": {
"Bref\\Test\\": "tests"
}
},
"bin": [
"bref",
"src/bref-local"
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*",
"crwlr/query-string": "^1.0.3",
"hollodotme/fast-cgi-client": "^3.0.1",
"nyholm/psr7": "^1.4.1",
"psr/container": "^1.0|^2.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-server-handler": "^1.0",
"riverline/multipart-parser": "^2.1.2",
"symfony/process": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"async-aws/core": "^1.0",
"async-aws/lambda": "^1.0",
"aws/aws-sdk-php": "^3.172",
"bref/secrets-loader": "^1.0",
"dms/phpunit-arraysubset-asserts": "^0.4",
"doctrine/coding-standard": "^8.0",
"guzzlehttp/guzzle": "^7.5",
"phpstan/phpstan": "^1.10.26",
"phpunit/phpunit": "^9.6.10",
"symfony/console": "^4.4|^5.0|^6.0|^7.0",
"symfony/yaml": "^4.4|^5.0|^6.0|^7.0"
},
"scripts": {
"test": [
"@static-analysis",
"@unit-tests",
"@code-style"
],
"code-style": [
"vendor/bin/phpcs"
],
"static-analysis": [
"vendor/bin/phpstan analyse"
],
"unit-tests": [
"vendor/bin/phpunit --testsuite small"
]
},
"scripts-descriptions": {
"test": "Run the test suite",
"code-style": "Run code style checks using PHP_CodeSniffer",
"static-analysis": "Run static analysis using PHPStan",
"tests": "Run unit tests with PHPUnit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}