composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.5.9 || ^7.0 || ^8.0",
  20. "phpoption/phpoption": "^1.7.3",
  21. "symfony/polyfill-ctype": "^1.17"
  22. },
  23. "require-dev": {
  24. "ext-filter": "*",
  25. "ext-pcre": "*",
  26. "bamarni/composer-bin-plugin": "^1.4.1",
  27. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Dotenv\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Dotenv\\Tests\\": "tests/Dotenv/"
  37. }
  38. },
  39. "suggest": {
  40. "ext-filter": "Required to use the boolean validator.",
  41. "ext-pcre": "Required to use most of the library."
  42. },
  43. "config": {
  44. "allow-plugins": {
  45. "bamarni/composer-bin-plugin": true
  46. },
  47. "preferred-install": "dist"
  48. },
  49. "extra": {
  50. "bamarni-bin": {
  51. "bin-links": true,
  52. "forward-command": true
  53. },
  54. "branch-alias": {
  55. "dev-master": "4.3-dev"
  56. }
  57. }
  58. }