composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.3.9 || ^7.0 || ^8.0",
  20. "symfony/polyfill-ctype": "^1.9"
  21. },
  22. "require-dev": {
  23. "ext-filter": "*",
  24. "ext-pcre": "*",
  25. "phpunit/phpunit": "^4.8.35 || ^5.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Dotenv\\": "src/"
  30. }
  31. },
  32. "suggest": {
  33. "ext-filter": "Required to use the boolean validator.",
  34. "ext-pcre": "Required to use most of the library."
  35. },
  36. "config": {
  37. "preferred-install": "dist",
  38. "platform-check": false
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.6-dev"
  43. }
  44. }
  45. }