-
Roeland Jago Douma authored
To have a faster autoloading. We should get rid of those of course. But for now I do not see it happening any time soon. Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
Roeland Jago Douma authoredTo have a faster autoloading. We should get rid of those of course. But for now I do not see it happening any time soon. Signed-off-by:
Roeland Jago Douma <roeland@famdouma.nl>
This project manages its dependencies using Composer.
Learn more
composer.json 509 B
{
"config" : {
"vendor-dir": "lib/composer",
"optimize-autoloader": true
},
"autoload" : {
"psr-0": {
"": "lib/private/legacy"
},
"psr-4": {
"OC\\": "lib/private",
"OC\\Core\\": "core/",
"OC\\Settings\\": "settings/",
"OCP\\": "lib/public"
}
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2"
}
}