composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "sebastian/environment",
  3. "description": "Provides functionality to handle HHVM/PHP environments",
  4. "keywords": ["environment","hhvm","xdebug"],
  5. "homepage": "https://github.com/sebastianbergmann/environment",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de"
  11. }
  12. ],
  13. "support": {
  14. "issues": "https://github.com/sebastianbergmann/environment/issues",
  15. "security": "https://github.com/sebastianbergmann/environment/security/policy"
  16. },
  17. "config": {
  18. "platform": {
  19. "php": "8.1.0"
  20. },
  21. "optimize-autoloader": true,
  22. "sort-packages": true
  23. },
  24. "prefer-stable": true,
  25. "require": {
  26. "php": ">=8.1"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^10.0"
  30. },
  31. "suggest": {
  32. "ext-posix": "*"
  33. },
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-main": "6.1-dev"
  42. }
  43. }
  44. }