mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
Merge pull request #48891 from nextcloud/enh/noid/testing-namespace
[RFC] Setting NCU\ for unstable/work-in-progress API
This commit is contained in:
commit
7c67df6532
5 changed files with 12 additions and 1 deletions
|
|
@ -19,7 +19,8 @@
|
|||
"": "lib/private/legacy",
|
||||
"OC\\": "lib/private",
|
||||
"OC\\Core\\": "core/",
|
||||
"OCP\\": "lib/public"
|
||||
"OCP\\": "lib/public",
|
||||
"NCU\\": "lib/unstable"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
|
|
|
|||
|
|
@ -9,5 +9,6 @@ return array(
|
|||
'OC\\Core\\' => array($baseDir . '/core'),
|
||||
'OC\\' => array($baseDir . '/lib/private'),
|
||||
'OCP\\' => array($baseDir . '/lib/public'),
|
||||
'NCU\\' => array($baseDir . '/lib/unstable'),
|
||||
'' => array($baseDir . '/lib/private/legacy'),
|
||||
);
|
||||
|
|
|
|||
|
|
@ -17,6 +17,10 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
|
|||
'OC\\' => 3,
|
||||
'OCP\\' => 4,
|
||||
),
|
||||
'N' =>
|
||||
array (
|
||||
'NCU\\' => 4,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
|
|
@ -32,6 +36,10 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
|
|||
array (
|
||||
0 => __DIR__ . '/../../..' . '/lib/public',
|
||||
),
|
||||
'NCU\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/../../..' . '/lib/unstable',
|
||||
),
|
||||
);
|
||||
|
||||
public static $fallbackDirsPsr4 = array (
|
||||
|
|
|
|||
0
lib/unstable/.gitkeep
Normal file
0
lib/unstable/.gitkeep
Normal file
|
|
@ -19,6 +19,7 @@
|
|||
</plugins>
|
||||
<projectFiles>
|
||||
<directory name="lib/public"/>
|
||||
<directory name="lib/unstable"/>
|
||||
<ignoreFiles>
|
||||
<directory name="lib/composer/bin"/>
|
||||
</ignoreFiles>
|
||||
|
|
|
|||
Loading…
Reference in a new issue