sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
710 B
29 lines
710 B
{
|
|
"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": "Vance Lucas",
|
|
"email": "vance@vancelucas.com",
|
|
"homepage": "http://www.vancelucas.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.9"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^4.8.35 || ^5.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Dotenv\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.5-dev"
|
|
}
|
|
}
|
|
}
|
|
|