截流自动化的商城平台
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.

composer.json 729B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "khanamiryan/qrcode-detector-decoder",
  3. "type": "library",
  4. "description": "QR code decoder / reader",
  5. "keywords": [
  6. "qr",
  7. "zxing",
  8. "barcode"
  9. ],
  10. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  11. "license": [
  12. "MIT",
  13. "Apache-2.0"
  14. ],
  15. "authors": [
  16. {
  17. "name": "Ashot Khanamiryan",
  18. "email": "a.khanamiryan@gmail.com",
  19. "homepage": "https://github.com/khanamiryan",
  20. "role": "Developer"
  21. }
  22. ],
  23. "require": {
  24. "php": ">=5.6"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Zxing\\": "lib/"
  32. },
  33. "files": [
  34. "lib/Common/customFunctions.php"
  35. ]
  36. }
  37. }