Files
php-qrcode/composer.json
T
codemasher d257a8ea06 🔥
2018-08-23 20:23:05 +02:00

47 lines
902 B
JSON

{
"name": "chillerlan/php-qrcode",
"description": "A QR code generator. PHP 7.2+",
"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.2.0",
"chillerlan/php-traits": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.3"
},
"autoload": {
"psr-4": {
"chillerlan\\QRCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\QRCodePublic\\": "public/",
"chillerlan\\QRCodeTest\\": "tests/",
"chillerlan\\QRCodeExamples\\": "examples/"
}
},
"extra": {
"branch-alias": {
"dev-v2.0.x-php5": "1.0.8-dev"
}
}
}