Files
triagungbiantoro 417b7b7453
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m27s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 31s
Build, Push and Deploy / deploy-production (push) Has been skipped
harga pada beranda terhubung ke manage plans di dashboard admin
2026-04-25 21:57:25 +07:00

45 lines
1.2 KiB
JSON
Executable File

{
"name": "simplesoftwareio/simple-qrcode",
"description": "Simple QrCode is a QR code generator made for Laravel.",
"keywords": ["qrcode", "laravel", "simple", "generator", "wrapper"],
"homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
"license" : "MIT",
"authors": [
{
"name": "Simple Software LLC",
"email": "support@simplesoftware.io"
}
],
"require": {
"php": ">=7.2|^8.0",
"ext-gd": "*",
"bacon/bacon-qr-code": "^2.0"
},
"require-dev": {
"mockery/mockery": "~1",
"phpunit/phpunit": "~9"
},
"suggest": {
"ext-imagick": "Allows the generation of PNG QrCodes.",
"illuminate/support": "Allows for use within Laravel."
},
"autoload": {
"psr-4": {
"SimpleSoftwareIO\\QrCode\\": "src"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
],
"aliases": {
"QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
}
}
}
}