37 lines
967 B
JSON
37 lines
967 B
JSON
|
{
|
||
|
"name": "vlucas/phpdotenv",
|
||
|
"description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
|
||
|
"keywords": ["env", "dotenv", "environment"],
|
||
|
"license" : "BSD-3-Clause",
|
||
|
"authors" : [
|
||
|
{
|
||
|
"name": "Graham Campbell",
|
||
|
"email": "graham@alt-three.com",
|
||
|
"homepage": "https://gjcampbell.co.uk/"
|
||
|
},
|
||
|
{
|
||
|
"name": "Vance Lucas",
|
||
|
"email": "vance@vancelucas.com",
|
||
|
"homepage": "https://vancelucas.com/"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": "^5.4 || ^7.0",
|
||
|
"phpoption/phpoption": "^1.5",
|
||
|
"symfony/polyfill-ctype": "^1.9"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Dotenv\\": "src/"
|
||
|
}
|
||
|
},
|
||
|
"extra": {
|
||
|
"branch-alias": {
|
||
|
"dev-master": "3.6-dev"
|
||
|
}
|
||
|
}
|
||
|
}
|