composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "vinkla/hashids",
  3. "description": "A Hashids bridge for Laravel",
  4. "keywords": [
  5. "hashids",
  6. "laravel"
  7. ],
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Vincent Klaiber",
  12. "email": "hello@doubledip.se"
  13. }
  14. ],
  15. "require": {
  16. "php": "^7.3 || ^8.0",
  17. "graham-campbell/manager": "^4.4",
  18. "hashids/hashids": "^4.1",
  19. "illuminate/contracts": "^8.0",
  20. "illuminate/support": "^8.0"
  21. },
  22. "require-dev": {
  23. "graham-campbell/analyzer": "^3.0",
  24. "graham-campbell/testbench": "^5.4",
  25. "mockery/mockery": "^1.3",
  26. "phpunit/phpunit": "^9.3",
  27. "squizlabs/php_codesniffer": "^3.5"
  28. },
  29. "config": {
  30. "preferred-install": "dist"
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "9.1-dev"
  35. },
  36. "laravel": {
  37. "providers": [
  38. "Vinkla\\Hashids\\HashidsServiceProvider"
  39. ],
  40. "aliases": {
  41. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  42. }
  43. }
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "Vinkla\\Hashids\\": "src/"
  48. }
  49. },
  50. "autoload-dev": {
  51. "psr-4": {
  52. "Vinkla\\Tests\\Hashids\\": "tests/"
  53. }
  54. },
  55. "minimum-stability": "dev",
  56. "prefer-stable": true
  57. }