forked from sroze/companienv
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 825 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 825 Bytes
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
{
"name": "paysera/fork-sroze-companienv",
"description": "Companion for .env files",
"keywords": [
"dotenv",
".env",
"configuration"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel ROZE",
"email": "samuel.roze@gmail.com"
}
],
"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",
"composer/composer": "1.0.*@dev || 2.0.9"
}
}