No Description

composer.json 1.2KB

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": "hello@gjcampbell.co.uk",
  10. "homepage": "https://github.com/GrahamCampbell"
  11. },
  12. {
  13. "name": "Vance Lucas",
  14. "email": "vance@vancelucas.com",
  15. "homepage": "https://github.com/vlucas"
  16. }
  17. ],
  18. "require": {
  19. "php": "^5.4 || ^7.0 || ^8.0",
  20. "phpoption/phpoption": "^1.5.2",
  21. "symfony/polyfill-ctype": "^1.17"
  22. },
  23. "require-dev": {
  24. "ext-filter": "*",
  25. "ext-pcre": "*",
  26. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Dotenv\\": "src/"
  31. }
  32. },
  33. "suggest": {
  34. "ext-filter": "Required to use the boolean validator.",
  35. "ext-pcre": "Required to use most of the library."
  36. },
  37. "config": {
  38. "preferred-install": "dist"
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "3.6-dev"
  43. }
  44. }
  45. }