composer.json 673 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "phar-io/version",
  3. "description": "Library for handling version information and constraints",
  4. "license": "BSD-3-Clause",
  5. "authors": [
  6. {
  7. "name": "Arne Blankerts",
  8. "email": "arne@blankerts.de",
  9. "role": "Developer"
  10. },
  11. {
  12. "name": "Sebastian Heuer",
  13. "email": "sebastian@phpeople.de",
  14. "role": "Developer"
  15. },
  16. {
  17. "name": "Sebastian Bergmann",
  18. "email": "sebastian@phpunit.de",
  19. "role": "Developer"
  20. }
  21. ],
  22. "support": {
  23. "issues": "https://github.com/phar-io/version/issues"
  24. },
  25. "require": {
  26. "php": "^7.2 || ^8.0"
  27. },
  28. "autoload": {
  29. "classmap": [
  30. "src/"
  31. ]
  32. }
  33. }