-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.24 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
{
"name": "netolabs/php-lambda-runtime",
"description": "A library for running PHP code in AWS Lambda",
"type": "library",
"authors": [
{
"name": "Ben Plunkett",
"email": "me@benplunkett.com"
}
],
"autoload": {
"psr-4": {
"Neto\\Lambda\\": "src/Neto/Lambda"
}
},
"autoload-dev": {
"psr-4": {
"Neto\\Lambda\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.3",
"ext-json": "*",
"psr/http-message": "1.0.*",
"psr/http-server-handler": "1.0.*",
"psr/http-server-middleware": "1.0.*",
"psr/container": "^1.0",
"guzzlehttp/guzzle": "6.3.*",
"ulrichsg/getopt-php": "^3.2",
"netolabs/simple-container": "^0.2.0",
"php-di/invoker": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phake/phake": "3.1.*",
"squizlabs/php_codesniffer": "2.*"
},
"bin": [
"bin/invoke",
"bin/start_server",
"bin/router.php"
],
"scripts": {
"test": [
"phpunit --testdox"
],
"lint": [
"phpcs --standard=PSR2 src"
]
}
}