mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
* Grocycode: Productpicker, StockService * Grocycode: Datamatrix generation * Grocycode: Display in UI, make Images downloadable * Grocycode: Do not show on product card * Grocycode: Stockentry Label view * Grocycode: Webhooks & Labelprinter Feature * Grocycode: Manual Label printing * Grocycode: Print Label from product form * Quagga2: use zxing for DataMatrix recognition * Grocycode: Default settings for label printing * Prepare merge of master * Grocycode: docs * Docs: label printing webhook * Review - "grocy" is currently written lower-case everywhere, so let's do this also for "grocycode" - Unified phrases / capitalization - Minor UI adjustments (mainly context menu item ordering / ordering/spacing on product edit page) - Documented API changes for Swagger UI (grocy.openapi.json) - Reverted German localizations (those are managed via Transifex; would cause conflicts when manually edited - will import them later there) - Reverted a somehow messed up localization string (productform/help text for `cumulate_min_stock_amount_of_sub_products`) - Suppress deprecation warnings when generating Datamatrix PNG (otherwise the PNG is invalid, https://github.com/jucksearm/php-barcode/issues/3) - Default `FEATURE_FLAG_LABELPRINTER` to disabled Co-authored-by: Bernd Bestel <bernd@berrnd.de>
33 lines
707 B
JSON
33 lines
707 B
JSON
{
|
|
"require": {
|
|
"php": ">=7.4",
|
|
"slim/slim": "^4.0",
|
|
"slim/psr7": "^1.0",
|
|
"slim/http": "^1.0",
|
|
"php-di/php-di": "^6.0",
|
|
"rubellum/slim-blade-view": "^0.1.1",
|
|
"morris/lessql": "^0.4.1",
|
|
"gettext/gettext": "^4.8",
|
|
"eluceo/ical": "^0.16.0",
|
|
"erusev/parsedown": "^1.7",
|
|
"gumlet/php-image-resize": "^1.9",
|
|
"ezyang/htmlpurifier": "^4.13",
|
|
"jucksearm/php-barcode": "^1.0",
|
|
"guzzlehttp/guzzle": "^7.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Grocy\\Services\\": "services/",
|
|
"Grocy\\Controllers\\": "controllers/",
|
|
"Grocy\\Middleware\\": "middleware/",
|
|
"Grocy\\Helpers\\": "helpers/"
|
|
},
|
|
"files": [
|
|
"helpers/extensions.php"
|
|
]
|
|
},
|
|
"config": {
|
|
"platform-check": false
|
|
}
|
|
}
|