composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.5.9 || ^7.0",
  20. "phpoption/phpoption": "^1.7.2",
  21. "symfony/polyfill-ctype": "^1.9"
  22. },
  23. "require-dev": {
  24. "ext-filter": "*",
  25. "bamarni/composer-bin-plugin": "^1.3",
  26. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Dotenv\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Dotenv\\Tests\\": "tests/Dotenv/"
  36. }
  37. },
  38. "suggest": {
  39. "ext-filter": "Required to use the boolean validator."
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "4.1-dev"
  44. }
  45. }
  46. }