mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
findBinaryFinder is now a service that is still private but with some minor optimization (remove the hasKey check). isFunctionEnabled is now in OCP\Util Both function are still keep but all internal usage in nextcloud/server were migrated to the new usage, so that we can remove it in 26 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
23 lines
735 B
PHP
23 lines
735 B
PHP
<?php return array(
|
|
'root' => array(
|
|
'name' => '__root__',
|
|
'pretty_version' => 'dev-master',
|
|
'version' => 'dev-master',
|
|
'reference' => '7669331be09dd3cb848182ae8edc2408802a4fb4',
|
|
'type' => 'library',
|
|
'install_path' => __DIR__ . '/../',
|
|
'aliases' => array(),
|
|
'dev' => false,
|
|
),
|
|
'versions' => array(
|
|
'__root__' => array(
|
|
'pretty_version' => 'dev-master',
|
|
'version' => 'dev-master',
|
|
'reference' => '7669331be09dd3cb848182ae8edc2408802a4fb4',
|
|
'type' => 'library',
|
|
'install_path' => __DIR__ . '/../',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
),
|
|
);
|