-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.37 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.37 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "stechstudio/keep",
"description": "Toolkit for collaborative, secure management of secrets across applications, environments, and teams.",
"keywords": [
"secrets",
"secret-management",
"aws-ssm",
"secrets-manager",
"environment",
"cli",
"devops",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Joseph Szobody",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"ext-readline": "*",
"ext-sodium": "*",
"illuminate/console": "^12.0",
"illuminate/container": "^12.0",
"illuminate/support": "^12.0",
"laravel/prompts": "^0.3.0",
"symfony/console": "^7.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"aws/aws-sdk-php": "^3.354",
"laravel/pint": "^1.24",
"mockery/mockery": "^1.5",
"pestphp/pest": "^4.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.0",
"symfony/var-dumper": "^7.3"
},
"suggest": {
"aws/aws-sdk-php": "Required to use AWS SSM and Secrets Manager vault drivers."
},
"autoload": {
"psr-4": {
"STS\\Keep\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"STS\\Keep\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"lint": [
"@php vendor/bin/phpstan analyse --verbose --ansi"
],
"format": "vendor/bin/pint --preset laravel",
"ui:install": "cd src/Server/frontend && npm install",
"ui:build": "cd src/Server/frontend && npm run build",
"ui:dev": "cd src/Server/frontend && npm run dev",
"ui:clean": "cd src/Server/frontend && npm run clean",
"build": [
"@ui:install",
"@ui:build"
]
},
"bin": ["bin/keep"],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}