mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "milon/barcode",
|
|
"description": "Barcode generator like Qr Code, PDF417, C39, C39+, C39E, C39E+, C93, S25, S25+, I25, I25+, C128, C128A, C128B, C128C, 2-Digits UPC-Based Extention, 5-Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI (Variation of Plessey code)",
|
|
"keywords": [
|
|
"barcode",
|
|
"laravel",
|
|
"qrcode",
|
|
"QR Code",
|
|
"PDF417",
|
|
"Datamatrix",
|
|
"CODE 39",
|
|
"CODE 128",
|
|
"EAN",
|
|
"CODABAR"
|
|
],
|
|
"license": "LGPL-3.0",
|
|
"authors": [
|
|
{
|
|
"name": "Nuruzzaman Milon",
|
|
"email": "contact@milon.im"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3 | ^8.0",
|
|
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Milon\\Barcode": "src/"
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Milon\\Barcode\\BarcodeServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"DNS1D": "Milon\\Barcode\\Facades\\DNS1DFacade",
|
|
"DNS2D": "Milon\\Barcode\\Facades\\DNS2DFacade"
|
|
}
|
|
}
|
|
}
|
|
}
|