forked from sroze/companienv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 891 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "vsouz4/companienv",
"description": "Companion for .env files",
"keywords": [
"dotenv",
".env",
"configuration"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel ROZE",
"email": "[email protected]"
},
{
"name": "Vitor de Souza",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"symfony/console": "~3.0 || ~4.0 || ~5.0",
"symfony/dotenv": "~3.4 || ~4.0 || ~5.0",
"symfony/process": "~3.0 || ~4.0 || ~5.0",
"jackiedo/dotenv-editor": "~1.0"
},
"autoload": {
"psr-0": {
"Companienv": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Companienv": "tests/"
}
},
"bin": [
"bin/companienv"
],
"require-dev": {
"behat/behat": "^3.4",
"phpspec/phpspec": "6.1.1",
"composer/composer": "1.0.*@dev"
}
}