-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (43 loc) · 1.11 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
{
"name": "ixnode/php-vault",
"description": "Secure PHP Vault",
"license": "MIT",
"keywords": ["security", "encryption", "decryption", "cryptography", "env", "environment", "vault", "dotenv", "deployment", "cicd", "continuous delivery"],
"authors": [
{
"name": "Björn Hempel",
"email": "bjoern@hempel.li",
"homepage": "https://www.hempel.li/"
}
],
"autoload": {
"psr-4": {
"Ixnode\\PhpVault\\": "src",
"Test\\Ixnode\\PhpVault\\": "tests"
}
},
"require": {
"php": "^7.4 || ^8.0",
"adhocore/cli": "^0.9.0",
"ext-sodium": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.83"
},
"bin": [
"bin/php-vault"
],
"scripts": {
"analyse": [
"phpstan analyse src --level max --no-progress",
"phpstan analyse tests --level max --no-progress"
],
"tests": "phpunit tests",
"ci": [
"@analyse",
"@tests"
]
}
}