You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
707 B

  1. {
  2. "name": "dakyaco/recaptcha",
  3. "description": "Package to verify recaptcha request",
  4. "type": "library",
  5. "homepage": "https://gitlab.dakyaco.com/dakyaco-public/recaptcha-package",
  6. "keywords": ["Laravel", "Recaptcha"],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Amir Reza Mehrbakhsh",
  11. "email": "[email protected]"
  12. }
  13. ],
  14. "autoload" : {
  15. "psr-4" : {
  16. "Dakyaco\\Recaptcha\\": "src"
  17. }
  18. },
  19. "require": {
  20. "Illuminate/Support" : "~5"
  21. },
  22. "extra": {
  23. "laravel": {
  24. "providers": [
  25. "Dakyaco\\Recaptcha\\RecaptchaServiceProvider"
  26. ]
  27. }
  28. }
  29. }