34 lines
885 B
JSON
34 lines
885 B
JSON
{
|
|
"name": "symfony/dotenv",
|
|
"type": "library",
|
|
"description": "Registers environment variables from a .env file",
|
|
"keywords": ["environment", "env", "dotenv"],
|
|
"homepage": "https://symfony.com",
|
|
"license" : "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Fabien Potencier",
|
|
"email": "fabien@symfony.com"
|
|
},
|
|
{
|
|
"name": "Symfony Community",
|
|
"homepage": "https://symfony.com/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2.5",
|
|
"symfony/deprecation-contracts": "^2.1|^3"
|
|
},
|
|
"require-dev": {
|
|
"symfony/console": "^4.4|^5.0|^6.0",
|
|
"symfony/process": "^4.4|^5.0|^6.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": { "Symfony\\Component\\Dotenv\\": "" },
|
|
"exclude-from-classmap": [
|
|
"/Tests/"
|
|
]
|
|
},
|
|
"minimum-stability": "dev"
|
|
}
|