From: Kunal Mehta Date: Fri, 28 Sep 2018 05:26:16 +0000 (-0700) Subject: Suggest "apcu" not "apc" in composer.json X-Git-Tag: 1.34.0-rc.0~3969^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=ba701be532ddceea1630de968de14da6b45c1b2a;p=lhc%2Fweb%2Fwiklou.git Suggest "apcu" not "apc" in composer.json apc is the pre-PHP 5.5 extension that was partly merged into PHP itself (the opcode caching), and partly split into a separate apcu extension for the userland caching. We want people to install apcu for better performance. Note that we still need to support apc because of HHVM. Change-Id: I5830a66bc86ff321bf9141d2b65eedb4802e404f --- diff --git a/composer.json b/composer.json index 7d4b1647e1..0707f0400b 100644 --- a/composer.json +++ b/composer.json @@ -74,7 +74,7 @@ "wmde/hamcrest-html-matchers": "^0.1.0" }, "suggest": { - "ext-apc": "Local data and opcode cache", + "ext-apcu": "Local data cache for greatly improved performance", "ext-curl": "Improved http communication abilities", "ext-fileinfo": "Improved mime magic detection", "ext-intl": "ICU integration",