Dashboard sipadu mbip
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.

composer.json 804B

12345678910111213141516171819202122232425262728293031
  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.4 || ^7.0",
  15. "phpoption/phpoption": "^1.5",
  16. "symfony/polyfill-ctype": "^1.9"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Dotenv\\": "src/"
  24. }
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "3.4-dev"
  29. }
  30. }
  31. }