Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/twig-bundle.zip
Ðазад
PK �n�\H��� � error_lognu �[��� [08-Apr-2025 04:41:59 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [14-Apr-2025 00:31:52 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [19-Apr-2025 02:43:16 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [24-Apr-2025 21:23:21 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [08-May-2025 17:07:38 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [12-May-2025 13:35:36 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [12-May-2025 23:19:24 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 [14-May-2025 00:41:14 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\Bundle\Bundle" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php:28 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/TwigBundle.php on line 28 PK �n�\�W"(S S TemplateIterator.phpnu �[��� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\TwigBundle; use Symfony\Component\Finder\Finder; use Symfony\Component\HttpKernel\KernelInterface; /** * Iterator for all templates in bundles and in the application Resources directory. * * @author Fabien Potencier <fabien@symfony.com> * * @internal * * @implements \IteratorAggregate<int, string> */ class TemplateIterator implements \IteratorAggregate { private \Traversable $templates; /** * @param array $paths Additional Twig paths to warm * @param string|null $defaultPath The directory where global templates can be stored * @param string[] $namePatterns Pattern of file names */ public function __construct( private KernelInterface $kernel, private array $paths = [], private ?string $defaultPath = null, private array $namePatterns = [], ) { } public function getIterator(): \Traversable { if (isset($this->templates)) { return $this->templates; } $templates = null !== $this->defaultPath ? [$this->findTemplatesInDirectory($this->defaultPath, null, ['bundles'])] : []; foreach ($this->kernel->getBundles() as $bundle) { $name = $bundle->getName(); if (str_ends_with($name, 'Bundle')) { $name = substr($name, 0, -6); } $bundleTemplatesDir = is_dir($bundle->getPath().'/Resources/views') ? $bundle->getPath().'/Resources/views' : $bundle->getPath().'/templates'; $templates[] = $this->findTemplatesInDirectory($bundleTemplatesDir, $name); if (null !== $this->defaultPath) { $templates[] = $this->findTemplatesInDirectory($this->defaultPath.'/bundles/'.$bundle->getName(), $name); } } foreach ($this->paths as $dir => $namespace) { $templates[] = $this->findTemplatesInDirectory($dir, $namespace); } return $this->templates = new \ArrayIterator(array_unique(array_merge([], ...$templates))); } /** * Find templates in the given directory. * * @return string[] */ private function findTemplatesInDirectory(string $dir, ?string $namespace = null, array $excludeDirs = []): array { if (!is_dir($dir)) { return []; } $templates = []; foreach (Finder::create()->files()->followLinks()->in($dir)->exclude($excludeDirs)->name($this->namePatterns) as $file) { $templates[] = (null !== $namespace ? '@'.$namespace.'/' : '').str_replace('\\', '/', $file->getRelativePathname()); } return $templates; } } PK �n�\���� CHANGELOG.mdnu �[��� CHANGELOG ========= 7.1 --- * Mark class `TemplateCacheWarmer` as `final` 7.0 --- * Remove the `Twig_Environment` autowiring alias, use `Twig\Environment` instead * Remove option `twig.autoescape`; create a class that implements your escaping strategy (check `FileExtensionEscapingStrategy::guess()` for inspiration) and reference it using the `twig.autoescape_service` option instead * Drop support for Twig 2 6.4 --- * Allow omitting the `autoescape_service_method` option when `autoescape_service` is set to an invokable service id 6.3 --- * Deprecate the `Twig_Environment` autowiring alias, use `Twig\Environment` instead 6.2 --- * Add the `twig.mailer.html_to_text_converter` option to allow configuring custom `HtmlToTextConverterInterface` implementations to be used by the `twig.mime_body_renderer` service 6.1 --- * Add option `twig.file_name_pattern` to restrict which files are compiled by cache warmer and linter * Deprecate option `twig.autoescape`, use `twig.autoescape_service[_method]` instead 6.0 --- * The `twig` service is now private 5.3 --- * Add support for the new `serialize` filter (from Twig Bridge) 5.2.0 ----- * deprecated the public `twig` service to private 5.0.0 ----- * updated default value for the `strict_variables` option to `%kernel.debug%` parameter * removed support to load templates from the legacy directories `src/Resources/views/` and `src/Resources/<BundleName>/views/` * removed `TwigEngine` class, use `Twig\Environment` instead * removed `FilesystemLoader` and `NativeFilesystemLoader`, use Twig notation for templates instead * removed `twig.exception_controller` configuration option, use `framework.error_controller` option instead * removed `ExceptionController`, `PreviewErrorController` and all built-in error templates in favor of the new error renderer mechanism 4.4.0 ----- * marked the `TemplateIterator` as `internal` * added HTML comment to beginning and end of `exception_full.html.twig` * deprecated `ExceptionController` and `PreviewErrorController` controllers, use `ErrorController` from the `HttpKernel` component instead * deprecated all built-in error templates in favor of the new error renderer mechanism * deprecated `twig.exception_controller` configuration option, set it to "null" and use `framework.error_controller` configuration instead 4.2.0 ----- * deprecated support for legacy templates directories `src/Resources/views/` and `src/Resources/<BundleName>/views/`, use `templates/` and `templates/bundles/<BundleName>/` instead. 4.1.0 ----- * added priority to Twig extensions * deprecated relying on the default value (`false`) of the `twig.strict_variables` configuration option. The `%kernel.debug%` parameter will be the new default in 5.0 4.0.0 ----- * removed `ContainerAwareRuntimeLoader` 3.4.0 ----- * added exclusive Twig namespace only for root bundles * deprecated `Symfony\Bundle\TwigBundle\Command\DebugCommand`, use `Symfony\Bridge\Twig\Command\DebugCommand` instead * deprecated relying on the `ContainerAwareInterface` implementation for `Symfony\Bundle\TwigBundle\Command\LintCommand` * added option to configure default path templates (via `default_path`) 3.3.0 ----- * Deprecated `ContainerAwareRuntimeLoader` 2.7.0 ----- * made it possible to configure the default formats for both the `date` and the `number_format` filter * added support for the new Asset component (from Twig bridge) * deprecated the assets extension (use the one from the Twig bridge instead) 2.6.0 ----- * [BC BREAK] changed exception.json.twig to match same structure as error.json.twig making clients independent of runtime environment. 2.3.0 ----- * added option to configure a custom template escaping guesser (via `autoescape_service` and `autoescape_service_method`) 2.2.0 ----- * moved the exception controller to be a service (`twig.controller.exception:showAction` vs `Symfony\\Bundle\\TwigBundle\\Controller\\ExceptionController::showAction`) * added support for multiple loaders via the "twig.loader" tag. * added automatic registration of namespaced paths for registered bundles * added support for namespaced paths 2.1.0 ----- * added a new setting ("paths") to configure more paths for the Twig filesystem loader * added contextual escaping based on the template file name (disabled if you explicitly pass an autoescape option) * added a command that extracts translation messages from templates * added the real template name when an error occurs in a Twig template * added the twig:lint command that will validate a Twig template syntax. PK �n�\˼�� � README.mdnu �[��� TwigBundle ========== TwigBundle provides a tight integration of Twig into the Symfony full-stack framework. Resources --------- * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony) PK �n�\���U, , LICENSEnu �[��� Copyright (c) 2004-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK �n�\�}�! TwigBundle.phpnu �[��� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\TwigBundle; use Symfony\Bundle\TwigBundle\DependencyInjection\Compiler\ExtensionPass; use Symfony\Bundle\TwigBundle\DependencyInjection\Compiler\RuntimeLoaderPass; use Symfony\Bundle\TwigBundle\DependencyInjection\Compiler\TwigEnvironmentPass; use Symfony\Bundle\TwigBundle\DependencyInjection\Compiler\TwigLoaderPass; use Symfony\Component\Console\Application; use Symfony\Component\DependencyInjection\Compiler\PassConfig; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; /** * Bundle. * * @author Fabien Potencier <fabien@symfony.com> */ class TwigBundle extends Bundle { public function build(ContainerBuilder $container): void { parent::build($container); // ExtensionPass must be run before the FragmentRendererPass as it adds tags that are processed later $container->addCompilerPass(new ExtensionPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 10); $container->addCompilerPass(new TwigEnvironmentPass()); $container->addCompilerPass(new TwigLoaderPass()); $container->addCompilerPass(new RuntimeLoaderPass(), PassConfig::TYPE_BEFORE_REMOVING); } public function registerCommands(Application $application): void { // noop } } PK �n�\�5`K K CacheWarmer/error_lognu �[��� [10-Apr-2025 21:55:23 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 [16-Apr-2025 16:19:53 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 [22-Apr-2025 03:49:42 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 [27-Apr-2025 19:56:22 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 [30-Apr-2025 07:34:40 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 [13-May-2025 00:38:09 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 [14-May-2025 01:15:45 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php:27 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/CacheWarmer/TemplateCacheWarmer.php on line 27 PK �n�\�� �� � # CacheWarmer/TemplateCacheWarmer.phpnu �[��� <?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\TwigBundle\CacheWarmer; use Psr\Container\ContainerInterface; use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface; use Symfony\Contracts\Service\ServiceSubscriberInterface; use Twig\Environment; use Twig\Error\Error; /** * Generates the Twig cache for all templates. * * @author Fabien Potencier <fabien@symfony.com> * * @final since Symfony 7.1 */ class TemplateCacheWarmer implements CacheWarmerInterface, ServiceSubscriberInterface { private Environment $twig; /** * As this cache warmer is optional, dependencies should be lazy-loaded, that's why a container should be injected. */ public function __construct( private ContainerInterface $container, private iterable $iterator, ) { } public function warmUp(string $cacheDir, ?string $buildDir = null): array { $this->twig ??= $this->container->get('twig'); foreach ($this->iterator as $template) { try { $this->twig->load($template); } catch (Error) { /* * Problem during compilation, give up for this template (e.g. syntax errors). * Failing silently here allows to ignore templates that rely on functions that aren't available in * the current environment. For example, the WebProfilerBundle shouldn't be available in the prod * environment, but some templates that are never used in prod might rely on functions the bundle provides. * As we can't detect which templates are "really" important, we try to load all of them and ignore * errors. Error checks may be performed by calling the lint:twig command. */ } } return []; } public function isOptional(): bool { return true; } public static function getSubscribedServices(): array { return [ 'twig' => Environment::class, ]; } } PK �n�\��O� � DependencyInjection/error_lognu �[��� [10-Apr-2025 19:09:22 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [11-Apr-2025 05:31:35 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 [16-Apr-2025 07:58:44 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 [19-Apr-2025 19:58:38 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [22-Apr-2025 05:44:49 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 [22-Apr-2025 10:35:49 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [27-Apr-2025 19:21:30 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 [27-Apr-2025 23:11:39 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [30-Apr-2025 04:36:05 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [30-Apr-2025 07:34:50 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 [13-May-2025 10:03:59 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [13-May-2025 10:15:35 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 [13-May-2025 23:19:30 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Config\Definition\ConfigurationInterface" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php:25 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/Configuration.php on line 25 [14-May-2025 01:01:31 UTC] PHP Fatal error: Uncaught Error: Class "Symfony\Component\HttpKernel\DependencyInjection\Extension" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php:39 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/symfony/twig-bundle/DependencyInjection/TwigExtension.php on line 39 PK �n�\P}�uX X <