composer.json 793 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "sebastian/environment",
  3. "description": "Provides functionality to handle HHVM/PHP environments",
  4. "keywords": ["environment","hhvm","xdebug"],
  5. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de"
  11. }
  12. ],
  13. "config": {
  14. "optimize-autoloader": true,
  15. "sort-packages": true
  16. },
  17. "prefer-stable": true,
  18. "require": {
  19. "php": "^7.1"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^7.4"
  23. },
  24. "autoload": {
  25. "classmap": [
  26. "src/"
  27. ]
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "4.0-dev"
  32. }
  33. }
  34. }