Salve, ricevo il seguente errore:

Fatal error: Uncaught exception 'ReflectionException' with message 'Extension intl does not exist' in /**/install/SymfonyRequirements.php:659 Stack trace: #0 /**/install/SymfonyRequirements.php(659): ReflectionExtension->__construct('intl') #1 /**/install/index.php(21): SymfonyRequirements->__construct() #2 {main} thrown in /**/install/SymfonyRequirements.php on line 659

quando vado ad installare un cms
che richiama il codice:

if (class_exists('Locale')) {
if (defined('INTL_ICU_VERSION')) {
$version = INTL_ICU_VERSION;
} else {
$reflector = new ReflectionExtension('intl');

deduco non esista l'estensione di PHP "intl"

come posso configurare e risolvere questo problema?

Grazie in anticipo!