composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "jean85/pretty-package-versions",
  3. "description": "A library to get pretty versions strings of installed dependencies",
  4. "type": "library",
  5. "require": {
  6. "php": "^7.1|^8.0",
  7. "composer-runtime-api": "^2.0.0"
  8. },
  9. "require-dev": {
  10. "friendsofphp/php-cs-fixer": "^2.17",
  11. "jean85/composer-provided-replaced-stub-package": "^1.0",
  12. "phpstan/phpstan": "^0.12.66",
  13. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  14. "vimeo/psalm": "^4.3"
  15. },
  16. "license": "MIT",
  17. "authors": [
  18. {
  19. "name": "Alessandro Lai",
  20. "email": "alessandro.lai85@gmail.com"
  21. }
  22. ],
  23. "support": {
  24. "issues": "https://github.com/Jean85/pretty-package-versions/issues"
  25. },
  26. "keywords": [
  27. "package",
  28. "versions",
  29. "composer",
  30. "release"
  31. ],
  32. "config": {
  33. "sort-packages": true
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Jean85\\": "src/"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "Tests\\": "tests"
  48. }
  49. }
  50. }