composer.json 571 B

123456789101112131415161718192021
  1. {
  2. "name": "aferrandini/phpqrcode",
  3. "description": "PHPQRCode porting and changed for PHP 5.3 compatibility",
  4. "keywords": ["php", "qrcode", "barcode"],
  5. "homepage": "https://github.com/aferrandini/PHPQRCode",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Ariel Ferrandini",
  11. "email": "arielferrandini@gmail.com",
  12. "homepage": "http://www.ferrandini.com/"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.0"
  17. },
  18. "autoload": {
  19. "psr-0": { "PHPQRCode": "lib/" }
  20. }
  21. }