composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "hashids/hashids",
  3. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  4. "keywords": ["hashids", "hashid", "hash", "ids", "youtube", "bitly", "encode", "decode", "obfuscate"],
  5. "homepage": "http://hashids.org/php",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Ivan Akimov",
  10. "email": "ivan@barreleye.com",
  11. "homepage": "https://twitter.com/IvanAkimov"
  12. },
  13. {
  14. "name": "Vincent Klaiber",
  15. "email": "hello@vinkla.com",
  16. "homepage": "https://vinkla.com"
  17. }
  18. ],
  19. "require": {
  20. "php": "^7.1.3"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^7.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Hashids\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Hashids\\Tests\\": "tests/"
  33. }
  34. },
  35. "config": {
  36. "preferred-install": "dist"
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "3.0-dev"
  41. }
  42. },
  43. "suggest": {
  44. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  45. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  46. },
  47. "minimum-stability": "dev",
  48. "prefer-stable": true
  49. }