composer.json 719B

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-Attribution",
  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. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^4.8 || ^5.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Dotenv\\": "src/"
  22. }
  23. },
  24. "extra": {
  25. "branch-alias": {
  26. "dev-master": "2.4-dev"
  27. }
  28. }
  29. }