Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "rector/rector": "^0.13.6",
  29. "symplify/easy-coding-standard": "^11.0"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Zxing\\": "lib/"
  34. },
  35. "files": [
  36. "lib/Common/customFunctions.php"
  37. ]
  38. },
  39. "scripts": {
  40. "check-cs": "./vendor/bin/ecs check",
  41. "fix-cs": "./vendor/bin/ecs check --fix",
  42. "tests": "./vendor/bin/phpunit"
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "Khanamiryan\\QrCodeTests\\": "tests/"
  47. }
  48. }
  49. }