| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "chillerlan/php-qrcode",
- "description": "A QR code generator. PHP 7+",
- "homepage": "https://github.com/chillerlan/php-qrcode",
- "license": "MIT",
- "minimum-stability": "stable",
- "type": "library",
- "keywords": [
- "QR code"
- ],
- "authors": [
- {
- "name": "Kazuhiko Arase",
- "homepage": "https://github.com/kazuhikoarase"
- },
- {
- "name": "Smiley",
- "email": "smiley@chillerlan.net",
- "homepage": "https://github.com/codemasher"
- }
- ],
- "require": {
- "php": ">=7.0.3",
- "chillerlan/php-traits": "^1.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.5",
- "chillerlan/php-authenticator": "^2.0"
- },
- "suggest": {
- },
- "autoload": {
- "psr-4": {
- "chillerlan\\QRCode\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "chillerlan\\QRCodePublic\\": "public/",
- "chillerlan\\QRCodeTest\\": "tests/",
- "chillerlan\\QRCodeExamples\\": "examples/"
- }
- }
- }
|