composer.json 967 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "vlucas/phpdotenv",
  3. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4. "keywords": ["env", "dotenv", "environment"],
  5. "license" : "BSD-3-Clause",
  6. "authors" : [
  7. {
  8. "name": "Graham Campbell",
  9. "email": "graham@alt-three.com",
  10. "homepage": "https://gjcampbell.co.uk/"
  11. },
  12. {
  13. "name": "Vance Lucas",
  14. "email": "vance@vancelucas.com",
  15. "homepage": "https://vancelucas.com/"
  16. }
  17. ],
  18. "require": {
  19. "php": "^5.4 || ^7.0",
  20. "phpoption/phpoption": "^1.5",
  21. "symfony/polyfill-ctype": "^1.9"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Dotenv\\": "src/"
  29. }
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "3.6-dev"
  34. }
  35. }
  36. }