Add fill-mbstring, which is required by twig

This commit is contained in:
slawkens
2023-02-02 10:42:47 +01:00
parent 130f7ba405
commit 301c3b86e2
10 changed files with 4134 additions and 1 deletions

View File

@@ -9,6 +9,11 @@ $loader->register();
// register the base directories for the namespace prefix
$loader->addNamespace('Composer\Semver', LIBS . 'semver');
$loader->addNamespace('Twig', LIBS . 'Twig');
$loader->addNamespace('Symfony\Polyfill\Mbstring', LIBS . 'polyfill-mbstring');
// load polyfill-mbstring bootstrap
require LIBS . 'polyfill-mbstring/bootstrap.php';
/**
* An example of a general-purpose implementation that includes the optional
* functionality of allowing multiple base directories for a single namespace
@@ -203,4 +208,4 @@ class Psr4AutoloaderClass
}
return false;
}
}
}