This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Dotenv/composer.json

32 lines
790 B
JSON
Raw Normal View History

2017-01-11 00:13:23 +00:00
{
"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": {
2020-07-05 02:19:18 +01:00
"php": ">=7.1.3"
2017-01-11 00:13:23 +00:00
},
"require-dev": {
"symfony/process": "^3.4.2|^4.0|^5.0"
2017-01-11 00:13:23 +00:00
},
"autoload": {
"psr-4": { "Symfony\\Component\\Dotenv\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
2017-01-11 00:13:23 +00:00
}