暫無描述

composer.json 765B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "vlucas/phpdotenv",
  3. "type": "library",
  4. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5. "keywords": ["env", "dotenv", "environment"],
  6. "homepage": "http://github.com/vlucas/phpdotenv",
  7. "license" : "BSD",
  8. "authors" : [
  9. {
  10. "name": "Vance Lucas",
  11. "email": "vance@vancelucas.com",
  12. "homepage": "http://www.vancelucas.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.2"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.0"
  20. },
  21. "autoload": {
  22. "psr-0": {
  23. "Dotenv": "src/"
  24. }
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "1.0-dev"
  29. }
  30. }
  31. }