forked from johnathanmiller/secure-env-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 823 Bytes
/
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
{
"name": "johnathanmiller/secure-env-php",
"description": "Encrypt environment files for production use.",
"keywords": ["dotenv", "encryption", "env", "environment", "environment-variables", "environment-vars", "secure-env"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Johnathan Miller",
"email": "[email protected]",
"homepage": "https://johnathanmiller.com"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"SecureEnvPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SecureEnvPHP\\Tests\\": "tests/"
}
},
"bin": [
"bin/encrypt-env"
]
}