composer.json 962 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "sebastian/version",
  3. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4. "homepage": "https://github.com/sebastianbergmann/version",
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Sebastian Bergmann",
  9. "email": "sebastian@phpunit.de",
  10. "role": "lead"
  11. }
  12. ],
  13. "support": {
  14. "issues": "https://github.com/sebastianbergmann/version/issues",
  15. "security": "https://github.com/sebastianbergmann/version/security/policy"
  16. },
  17. "config": {
  18. "platform": {
  19. "php": "8.2.0"
  20. },
  21. "optimize-autoloader": true,
  22. "sort-packages": true
  23. },
  24. "prefer-stable": true,
  25. "require": {
  26. "php": ">=8.2"
  27. },
  28. "autoload": {
  29. "classmap": [
  30. "src/"
  31. ]
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-main": "5.0-dev"
  36. }
  37. }
  38. }