Files
php-qrcode/composer.json
codemasher 39ba9975ce :octocat:
2020-04-06 01:34:19 +02:00

40 lines
761 B
JSON

{
"name": "chillerlan/php-qrcode",
"description": "A QR code generator. PHP 5.6+",
"homepage": "https://github.com/chillerlan/php-qrcode",
"license": "MIT",
"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": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"chillerlan\\QRCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\QRCodePublic\\": "public/",
"chillerlan\\QRCodeTest\\": "tests/",
"chillerlan\\QRCodeExamples\\": "examples/"
}
}
}