Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 281cced

Browse files
committed
updated VENDORS for 2.2.4
1 parent 2a84918 commit 281cced

File tree

2 files changed

+78
-73
lines changed

2 files changed

+78
-73
lines changed

app/SymfonyRequirements.php

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* ************** CAUTION **************
1818
*
19-
* DO NOT EDIT THIS FILE as it will be overriden by Composer as part of
19+
* DO NOT EDIT THIS FILE as it will be overridden by Composer as part of
2020
* the installation/update process. The original file resides in the
2121
* SensioDistributionBundle.
2222
*
@@ -307,7 +307,7 @@ public function getFailedRequirements()
307307
}
308308

309309
/**
310-
* Returns all optional recommmendations.
310+
* Returns all optional recommendations.
311311
*
312312
* @return array Array of Requirement instances
313313
*/
@@ -630,11 +630,15 @@ class_exists('Locale'),
630630
}
631631

632632
$accelerator =
633-
(function_exists('apc_store') && ini_get('apc.enabled'))
633+
(extension_loaded('eaccelerator') && ini_get('eaccelerator.enable'))
634634
||
635-
function_exists('eaccelerator_put') && ini_get('eaccelerator.enable')
635+
(extension_loaded('apc') && ini_get('apc.enabled'))
636636
||
637-
function_exists('xcache_set')
637+
(extension_loaded('Zend OPcache') && ini_get('opcache.enable'))
638+
||
639+
(extension_loaded('xcache') && ini_get('xcache.cacher'))
640+
||
641+
(extension_loaded('wincache') && ini_get('wincache.ocenabled'))
638642
;
639643

640644
$this->addRecommendation(

0 commit comments

Comments
 (0)