forked from brefphp/bref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.88 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"
}
},
"autoload-dev": {
"psr-4": {
"Bref\\Test\\": "tests"
}
},
"bin": [
"bref"
],
"require": {
"php": ">=7.3.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/lambda": "^1.0",
"nyholm/psr7": "^1.2",
"psr/container": "^1.0",
"symfony/yaml": "^3.1|^4.0|^5.0",
"symfony/http-client": "^4.4|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"dms/phpunit-arraysubset-asserts": "^0.2.0",
"doctrine/coding-standard": "^8.0",
"phpstan/phpstan": "^0.12",
"guzzlehttp/guzzle": "^6.3"
},
"scripts": {
"test": [
"@static-analysis",
"@unit-tests",
"@code-style"
],
"code-style": [
"vendor/bin/phpcs"
],
"static-analysis": [
"vendor/bin/phpstan analyse"
],
"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"
}
}