geocoder-php/BazingaGeocoderBundle

web profiler broken with Symfony 3.4.0-BETA3

DamienHarper opened this issue · 4 comments

Once this bundle installed on a fresh Symfony 3.4.0-BETA3 project, the web profiler is broken and displays "An error occurred while loading the web debug toolbar. Open the web profiler."

Opening the profiler displays an error page about a Twig_Error_Syntax (Unknown "humanize" filter.)
see attached screenshot.

screenshot

Thank you for this issue.
I thought humanize filter were enabled by default.. anyhow, we ahould try to remove it from the bundle.

Do you have the TwigBridge installed? The humanize filter lives there

@Nyholm yes I do. Here is the output from composer info symfony/*

symfony/cache                v3.4.0-BETA3 Symfony Cache component with PSR-6, PSR-16, and tags
symfony/class-loader         v3.4.0-BETA3 Symfony ClassLoader Component
symfony/config               v3.4.0-BETA3 Symfony Config Component
symfony/console              v3.4.0-BETA3 Symfony Console Component
symfony/debug                v3.4.0-BETA3 Symfony Debug Component
symfony/dependency-injection v3.4.0-BETA3 Symfony DependencyInjection Component
symfony/doctrine-bridge      v3.4.0-BETA3 Symfony Doctrine Bridge
symfony/dotenv               v3.4.0-BETA3 Registers environment variables from a .env file
symfony/event-dispatcher     v3.4.0-BETA3 Symfony EventDispatcher Component
symfony/filesystem           v3.4.0-BETA3 Symfony Filesystem Component
symfony/finder               v3.4.0-BETA3 Symfony Finder Component
symfony/flex                 v1.0.41
symfony/form                 v3.4.0-BETA3 Symfony Form Component
symfony/framework-bundle     v3.4.0-BETA3 Symfony FrameworkBundle
symfony/http-foundation      v3.4.0-BETA3 Symfony HttpFoundation Component
symfony/http-kernel          v3.4.0-BETA3 Symfony HttpKernel Component
symfony/inflector            v3.4.0-BETA3 Symfony Inflector Component
symfony/intl                 v3.4.0-BETA3 A PHP replacement layer for the C intl extension that includes additional data from the ICU library.
symfony/lock                 v3.4.0-BETA3 Symfony Lock Component
symfony/lts                  v3           Enforces Long Term Supported versions of Symfony components
symfony/monolog-bridge       v3.4.0-BETA3 Symfony Monolog Bridge
symfony/monolog-bundle       v3.1.2       Symfony MonologBundle
symfony/options-resolver     v3.4.0-BETA3 Symfony OptionsResolver Component
symfony/orm-pack             v1.0.4       A pack for the Doctrine ORM
symfony/polyfill-apcu        v1.6.0       Symfony polyfill backporting apcu_* functions to lower PHP versions
symfony/polyfill-intl-icu    v1.6.0       Symfony polyfill for intl's ICU-related data and classes
symfony/polyfill-mbstring    v1.6.0       Symfony polyfill for the Mbstring extension
symfony/polyfill-php56       v1.6.0       Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions
symfony/polyfill-php70       v1.6.0       Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions
symfony/polyfill-util        v1.6.0       Symfony utilities for portability of PHP codes
symfony/process              v3.4.0-BETA3 Symfony Process Component
symfony/profiler-pack        v1.0.2       A pack for the Symfony web profiler
symfony/property-access      v3.4.0-BETA3 Symfony PropertyAccess Component
symfony/property-info        v3.4.0-BETA3 Symfony Property Info Component
symfony/routing              v3.4.0-BETA3 Symfony Routing Component
symfony/security-core        v3.4.0-BETA3 Symfony Security Component - Core Library
symfony/security-guard       v3.4.0-BETA3 Symfony Security Component - Guard
symfony/security-http        v3.4.0-BETA3 Symfony Security Component - HTTP Integration
symfony/serializer           v3.4.0-BETA3 Symfony Serializer Component
symfony/stopwatch            v3.4.0-BETA3 Symfony Stopwatch Component
symfony/swiftmailer-bundle   v3.1.6       Symfony SwiftmailerBundle
symfony/templating           v3.4.0-BETA3 Symfony Templating Component
symfony/translation          v3.4.0-BETA3 Symfony Translation Component
symfony/twig-bridge          v3.4.0-BETA3 Symfony Twig Bridge
symfony/twig-bundle          v3.4.0-BETA3 Symfony TwigBundle
symfony/validator            v3.4.0-BETA3 Symfony Validator Component
symfony/var-dumper           v3.4.0-BETA3 Symfony mechanism for exploring and dumping PHP variables
symfony/web-profiler-bundle  v3.4.0-BETA3 Symfony WebProfilerBundle
symfony/workflow             v3.4.0-BETA3 Symfony Workflow Component
symfony/yaml                 v3.4.0-BETA3 Symfony Yaml Component

Thank you!