-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 997 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 997 Bytes
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
{
"name": "svnldwg/lambda-php-skeleton",
"description": "Skeleton project to quickly get started with running PHP on AWS Lambda",
"license": "MIT",
"type": "project",
"config": {
"platform": {
"php": "8.0"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"bref/bref": "^1.1.4",
"bref/logger": "^1.0.0",
"guzzlehttp/guzzle": "^7.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.3",
"phpstan/phpstan": "^0.12.25",
"roave/security-advisories": "dev-master"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"LambdaPhpSkeleton\\": "src/"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan"
],
"cs-check": "php-cs-fixer fix --config=dev/php-cs-fixer.php_cs --dry-run --diff",
"phpstan": "phpstan analyse -c dev/phpstan.neon --no-progress"
}
}