You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB

3 years ago
  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": "^7.1.3 || ^8.0",
  20. "ext-pcre": "*",
  21. "graham-campbell/result-type": "^1.0.1",
  22. "phpoption/phpoption": "^1.7.4",
  23. "symfony/polyfill-ctype": "^1.17",
  24. "symfony/polyfill-mbstring": "^1.17",
  25. "symfony/polyfill-php80": "^1.17"
  26. },
  27. "require-dev": {
  28. "ext-filter": "*",
  29. "bamarni/composer-bin-plugin": "^1.4.1",
  30. "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
  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. "preferred-install": "dist"
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "5.3-dev"
  51. }
  52. }
  53. }