composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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": "^7.1.3 || ^8.0",
  20. "ext-pcre": "*",
  21. "graham-campbell/result-type": "^1.0.2",
  22. "phpoption/phpoption": "^1.8",
  23. "symfony/polyfill-ctype": "^1.23",
  24. "symfony/polyfill-mbstring": "^1.23.1",
  25. "symfony/polyfill-php80": "^1.23.1"
  26. },
  27. "require-dev": {
  28. "ext-filter": "*",
  29. "bamarni/composer-bin-plugin": "^1.4.1",
  30. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Dotenv\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Dotenv\\Tests\\": "tests/Dotenv/"
  40. }
  41. },
  42. "suggest": {
  43. "ext-filter": "Required to use the boolean validator."
  44. },
  45. "config": {
  46. "allow-plugins": {
  47. "bamarni/composer-bin-plugin": true
  48. },
  49. "preferred-install": "dist"
  50. },
  51. "extra": {
  52. "bamarni-bin": {
  53. "bin-links": true,
  54. "forward-command": true
  55. },
  56. "branch-alias": {
  57. "dev-master": "5.5-dev"
  58. }
  59. }
  60. }