You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
880 B

3 years ago
  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. },
  16. "config": {
  17. "platform": {
  18. "php": "7.3.0"
  19. },
  20. "optimize-autoloader": true,
  21. "sort-packages": true
  22. },
  23. "prefer-stable": true,
  24. "require": {
  25. "php": ">=7.3"
  26. },
  27. "autoload": {
  28. "classmap": [
  29. "src/"
  30. ]
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "3.0-dev"
  35. }
  36. }
  37. }