composer.json 705 B

123456789101112131415161718192021222324252627282930
  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": "^7.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^6.1"
  19. },
  20. "autoload": {
  21. "classmap": [
  22. "src/"
  23. ]
  24. },
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "3.0.x-dev"
  28. }
  29. }
  30. }