diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-11-17 09:38:30 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-12-07 22:32:06 +0100 |
commit | be4c061b754df917c02bf111b1a15e3c1062b4b8 (patch) | |
tree | 349471f990c8567a3bc1eed9f94734665d1ef891 | |
parent | 3e5838198c6e5f879d3448cfb6c25babd83ca0c4 (diff) | |
download | nextcloud-server-be4c061b754df917c02bf111b1a15e3c1062b4b8.tar.gz nextcloud-server-be4c061b754df917c02bf111b1a15e3c1062b4b8.zip |
Set apcu prefix for composer
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r-- | lib/base.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php index fa69a7d6076..7098fb19fdd 100644 --- a/lib/base.php +++ b/lib/base.php @@ -594,6 +594,7 @@ class OC { // Add default composer PSR-4 autoloader self::$composerAutoloader = require_once OC::$SERVERROOT . '/lib/composer/autoload.php'; + self::$composerAutoloader->setApcuPrefix('composer_autoload'); try { self::initPaths(); |