-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
39 lines (39 loc) · 932 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
{
"name": "oscarotero/env",
"type": "library",
"description": "Simple library to consume environment variables",
"keywords": ["env"],
"homepage": "https://github.com/oscarotero/env",
"license": "MIT",
"authors": [
{
"name": "Oscar Otero",
"email": "[email protected]",
"homepage": "http://oscarotero.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/oscarotero/env/issues"
},
"require": {
"php": ">=7.1",
"ext-ctype": "*"
},
"autoload": {
"psr-4": {
"Env\\": "src/"
},
"files": [
"src/env_function.php"
]
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"test": "phpunit"
}
}