composer.json 832 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "symfony/dotenv",
  3. "type": "library",
  4. "description": "Registers environment variables from a .env file",
  5. "keywords": ["environment", "env", "dotenv"],
  6. "homepage": "https://symfony.com",
  7. "license" : "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "symfony/deprecation-contracts": "^2.1"
  21. },
  22. "require-dev": {
  23. "symfony/process": "^4.4|^5.0"
  24. },
  25. "autoload": {
  26. "psr-4": { "Symfony\\Component\\Dotenv\\": "" },
  27. "exclude-from-classmap": [
  28. "/Tests/"
  29. ]
  30. },
  31. "minimum-stability": "dev"
  32. }