1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 16:50:09 +01:00
Files
laravel-valet/cli/includes/compatibility.php
2021-12-06 10:40:37 +00:00

30 lines
647 B
PHP

<?php
if (php_sapi_name() !== 'cli') {
// Allow bypassing these checks if using Valet in a non-CLI app
return;
}
/**
* Check the system's compatibility with Valet.
*/
$inTestingEnvironment = strpos($_SERVER['SCRIPT_NAME'], 'phpunit') !== false;
if (PHP_OS !== 'Darwin' && ! $inTestingEnvironment) {
echo 'Valet only supports the Mac operating system.'.PHP_EOL;
exit(1);
}
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
echo 'Valet requires PHP 5.6 or later.';
exit(1);
}
if (exec('which brew') == '' && ! $inTestingEnvironment) {
echo 'Valet requires Homebrew to be installed on your Mac.';
exit(1);
}