Skip to content

Commit 8487b93

Browse files
committed
initialize
0 parents  commit 8487b93

14 files changed

+3628
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.idea/
2+
/.serverless/
3+
/vendor/

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "svnldwg/lambda-php-skeleton",
3+
"type": "project",
4+
"require": {
5+
"php": "^7.4",
6+
"ext-json": "*",
7+
"aws/aws-sdk-php": "^3.138.2",
8+
"bref/bref": "^0.5.24"
9+
},
10+
"require-dev": {
11+
"friendsofphp/php-cs-fixer": "^2.16.3",
12+
"phpstan/phpstan": "^0.12.25",
13+
"roave/security-advisories": "dev-master"
14+
},
15+
"minimum-stability": "stable",
16+
"autoload": {
17+
"psr-4": {
18+
"LambdaPhpSkeleton\\": "src/"
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)