composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "vinkla/hashids",
  3. "description": "A Hashids bridge for Laravel",
  4. "license": "MIT",
  5. "keywords": ["laravel", "hashids", "hashid", "hash", "ids", "youtube", "bitly", "encrypt", "decrypt", "obfuscate"],
  6. "authors": [
  7. {
  8. "name": "Vincent Klaiber",
  9. "email": "hello@vinkla.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^5.6.4 || ^7.0",
  14. "illuminate/contracts": "5.1.* || 5.2.* || 5.3.*",
  15. "illuminate/support": "5.1.* || 5.2.* || 5.3.*",
  16. "graham-campbell/manager": "^2.4",
  17. "hashids/hashids": "^1.0"
  18. },
  19. "require-dev": {
  20. "graham-campbell/testbench": "^3.2",
  21. "mockery/mockery": "^0.9.5",
  22. "phpunit/phpunit": "^5.4"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Vinkla\\Hashids\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Vinkla\\Tests\\Hashids\\": "tests/"
  32. }
  33. },
  34. "config": {
  35. "preferred-install": "dist"
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.4-dev"
  40. }
  41. },
  42. "minimum-stability": "dev",
  43. "prefer-stable": true
  44. }