nextcloud/apps/dashboard/composer/composer.json
Christoph Wurst ca67a9451d
perf(autoloading): Add authoritative autoloader for dashboard
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2023-01-30 16:38:52 +01:00

14 lines
269 B
JSON

{
"config" : {
"vendor-dir": ".",
"optimize-autoloader": true,
"classmap-authoritative": true,
"autoloader-suffix": "Dashboard"
},
"autoload" : {
"psr-4": {
"OCA\\Dashboard\\": "../lib/"
}
}
}