Skip to content

Commit

Permalink
enh(core): setting NCT namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl committed Oct 25, 2024
1 parent 7723faf commit 95a4ab5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"": "lib/private/legacy",
"OC\\": "lib/private",
"OC\\Core\\": "core/",
"OCP\\": "lib/public"
"OCP\\": "lib/public",
"NCT\\": "lib/testing"
}
},
"require": {
Expand Down
1 change: 1 addition & 0 deletions lib/composer/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
'OC\\Core\\' => array($baseDir . '/core'),
'OC\\' => array($baseDir . '/lib/private'),
'OCP\\' => array($baseDir . '/lib/public'),
'NCT\\' => array($baseDir . '/lib/testing'),
'' => array($baseDir . '/lib/private/legacy'),
);
8 changes: 8 additions & 0 deletions lib/composer/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
'OC\\' => 3,
'OCP\\' => 4,
),
'N' =>
array (
'NCT\\' => 4,
),
);

public static $prefixDirsPsr4 = array (
Expand All @@ -32,6 +36,10 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
array (
0 => __DIR__ . '/../../..' . '/lib/public',
),
'NCT\\' =>
array (
0 => __DIR__ . '/../../..' . '/lib/testing',
),
);

public static $fallbackDirsPsr4 = array (
Expand Down

0 comments on commit 95a4ab5

Please sign in to comment.