-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "unload/unload",
"description": "The Unload CLI, build and deploy a serverless application.",
"keywords": ["unload", "serverless", "aws", "cli", "lambda", "faas", "laravel", "bref"],
"homepage": "https://unload.sh",
"type": "project",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/unload/unload/issues",
"source": "https://github.com/unload/unload"
},
"authors": [
{
"name": "Yaroslav Khortiuk",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"aws/aws-sdk-php": "^3.220",
"illuminate/encryption": "^10.0.2",
"laminas/laminas-text": "^2.9",
"nunomaduro/termwind": "^1.15.1",
"opis/json-schema": "^2.3",
"symfony/yaml": "^6.0",
"laravel-zero/framework": "^10.0"
},
"require-dev": {
"laravel/tinker": "^2.7",
"mockery/mockery": "^1.5.1",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5.20"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/unload"]
}