composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "simplesoftwareio/simple-qrcode",
  3. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4. "keywords": ["qrcode", "laravel", "simple", "generator", "wrapper"],
  5. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  6. "license" : "MIT",
  7. "authors": [
  8. {
  9. "name": "Simple Software LLC",
  10. "email": "support@simplesoftware.io"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=7.2|^8.0",
  15. "ext-gd": "*",
  16. "bacon/bacon-qr-code": "^2.0"
  17. },
  18. "require-dev": {
  19. "mockery/mockery": "~1",
  20. "phpunit/phpunit": "~9"
  21. },
  22. "suggest": {
  23. "ext-imagick": "Allows the generation of PNG QrCodes.",
  24. "illuminate/support": "Allows for use within Laravel."
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "SimpleSoftwareIO\\QrCode\\": "src"
  29. }
  30. },
  31. "scripts": {
  32. "test": "phpunit"
  33. },
  34. "extra": {
  35. "laravel": {
  36. "providers": [
  37. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  38. ],
  39. "aliases": {
  40. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  41. }
  42. }
  43. }
  44. }