composer.json 713 B

12345678910111213141516171819202122232425262728293031
  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. "prefer-stable": true,
  14. "require": {
  15. "php": "^5.6 || ^7.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^5.0"
  19. },
  20. "autoload": {
  21. "classmap": [
  22. "src/"
  23. ]
  24. },
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "2.0.x-dev"
  28. }
  29. }
  30. }