composer.json 752 B

123456789101112131415161718192021222324252627282930
  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": "Vance Lucas",
  9. "email": "vance@vancelucas.com",
  10. "homepage": "http://www.vancelucas.com"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3.9",
  15. "symfony/polyfill-ctype": "^1.9"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^4.8.35 || ^5.0"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Dotenv\\": "src/"
  23. }
  24. },
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "2.6-dev"
  28. }
  29. }
  30. }