composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "mews/captcha",
  3. "type": "package",
  4. "description": "Laravel 5/6/7/8/9/10/11 Captcha Package",
  5. "keywords": ["laravel6 Captcha", "laravel6 Security", "laravel6 Captcha", "laravel5 Security", "Captcha"],
  6. "homepage": "https://github.com/mewebstudio/captcha",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Muharrem ERİN",
  11. "email": "me@mewebstudio.com",
  12. "homepage": "https://github.com/mewebstudio",
  13. "role": "Developer"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.2|^8.1|^8.2|^8.3",
  18. "ext-gd": "*",
  19. "illuminate/config": "~5|^6|^7|^8|^9|^10|^11",
  20. "illuminate/filesystem": "~5|^6|^7|^8|^9|^10|^11",
  21. "illuminate/support": "~5|^6|^7|^8|^9|^10|^11",
  22. "illuminate/hashing": "~5|^6|^7|^8|^9|^10|^11",
  23. "illuminate/session": "~5|^6|^7|^8|^9|^10|^11",
  24. "intervention/image": "~2.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^8.5|^9.5.10|^10.5",
  28. "mockery/mockery": "^1.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Mews\\Captcha\\": "src/"
  33. },
  34. "files": [
  35. "src/helpers.php"
  36. ]
  37. },
  38. "autoload-dev": {
  39. "classmap": [
  40. "tests"
  41. ],
  42. "psr-4": {
  43. "Mews\\Test\\": "tests/"
  44. }
  45. },
  46. "minimum-stability": "stable",
  47. "extra": {
  48. "laravel": {
  49. "providers": [
  50. "Mews\\Captcha\\CaptchaServiceProvider"
  51. ],
  52. "aliases": {
  53. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  54. }
  55. }
  56. }
  57. }