Skip to content

Commit

Permalink
updated VENDORS for 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 15, 2013
1 parent 2a84918 commit 281cced
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 73 deletions.
14 changes: 9 additions & 5 deletions app/SymfonyRequirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* ************** CAUTION **************
*
* DO NOT EDIT THIS FILE as it will be overriden by Composer as part of
* DO NOT EDIT THIS FILE as it will be overridden by Composer as part of
* the installation/update process. The original file resides in the
* SensioDistributionBundle.
*
Expand Down Expand Up @@ -307,7 +307,7 @@ public function getFailedRequirements()
}

/**
* Returns all optional recommmendations.
* Returns all optional recommendations.
*
* @return array Array of Requirement instances
*/
Expand Down Expand Up @@ -630,11 +630,15 @@ class_exists('Locale'),
}

$accelerator =
(function_exists('apc_store') && ini_get('apc.enabled'))
(extension_loaded('eaccelerator') && ini_get('eaccelerator.enable'))
||
function_exists('eaccelerator_put') && ini_get('eaccelerator.enable')
(extension_loaded('apc') && ini_get('apc.enabled'))
||
function_exists('xcache_set')
(extension_loaded('Zend OPcache') && ini_get('opcache.enable'))
||
(extension_loaded('xcache') && ini_get('xcache.cacher'))
||
(extension_loaded('wincache') && ini_get('wincache.ocenabled'))
;

$this->addRecommendation(
Expand Down
Loading

0 comments on commit 281cced

Please sign in to comment.