1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-06-08 23:50:25 +00:00

[Web] Switch QR code generation from external API to local library and fix composer.json/lock mismatch

This commit is contained in:
FreddleSpl0it
2026-02-24 11:02:47 +01:00
parent ad5b94af5e
commit 96d4802cb2
340 changed files with 16740 additions and 18628 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"name": "dasprid/enum",
"description": "PHP 7.1 enum implementation",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Ben Scholzen 'DASPRiD'",
"email": "mail@dasprids.de",
"homepage": "https://dasprids.de/",
"role": "Developer"
}
],
"keywords": [
"enum",
"map"
],
"require": {
"php": ">=7.1 <9.0"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"DASPRiD\\Enum\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DASPRiD\\EnumTest\\": "test/"
}
}
}