whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
froiden
/
laravel-installer
/
src
/
Helpers
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/froiden/laravel-installer/src/Helpers/RequirementsChecker.php
<?php namespace Froiden\LaravelInstaller\Helpers; class RequirementsChecker { private $_minPhpVersion = '7.1.0'; /** * Check for the server requirements. * * @param array $requirements * @return array */ public function check(array $requirements) { $results = []; foreach($requirements as $requirement) { $results['requirements'][$requirement] = true; if(!extension_loaded($requirement)) { $results['requirements'][$requirement] = false; $results['errors'] = true; } } return $results; } public function checkPHPversion(string $minPhpVersion = null) { $minVersionPhp = $minPhpVersion; $currentPhpVersion = $this->getPhpVersionInfo(); $supported = false; if ($minPhpVersion == null) { $minVersionPhp = $this->getMinPhpVersion(); } if (version_compare($currentPhpVersion['version'], $minVersionPhp) >= 0) { $supported = true; } $phpStatus = [ 'full' => $currentPhpVersion['full'], 'current' => $currentPhpVersion['version'], 'minimum' => $minVersionPhp, 'supported' => $supported ]; return $phpStatus; } /** * Get current Php version information * * @return array */ private static function getPhpVersionInfo() { $currentVersionFull = PHP_VERSION; preg_match("#^\d+(\.\d+)*#", $currentVersionFull, $filtered); $currentVersion = $filtered[0]; return [ 'full' => $currentVersionFull, 'version' => $currentVersion ]; } /** * Get minimum PHP version ID. * * @return string _minPhpVersion */ protected function getMinPhpVersion() { return $this->_minPhpVersion; } }
Copyright ©2021 || Defacer Indonesia