composer.json 903 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "platform": {
  15. "php": "7.3.0"
  16. },
  17. "optimize-autoloader": true,
  18. "sort-packages": true
  19. },
  20. "prefer-stable": true,
  21. "require": {
  22. "php": ">=7.3"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^9.3"
  26. },
  27. "suggest": {
  28. "ext-posix": "*"
  29. },
  30. "autoload": {
  31. "classmap": [
  32. "src/"
  33. ]
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "5.1-dev"
  38. }
  39. }
  40. }