1234567891011121314151617181920212223242526272829303132 |
- {
- "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"
- },
- "require-dev": {
- "symfony/process": "^4.4|^5.0"
- },
- "autoload": {
- "psr-4": { "Symfony\\Component\\Dotenv\\": "" },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "minimum-stability": "dev"
- }
|