- The event helper service (
ivory_google_map.helper.event
) & configuration parameter (ivory_google_map.event.helper_class
) has been removed.
The business classes have been moved to a dedicated library for reuasibility purpose. If you're using Symfony 2.0.*,
you need to update your deps
file:
[ivory-google-map]
git=http://github.com/egeloen/ivory-google-map.git
Autoload the library:
// app/autoload.php
$loader->registerNamespaces(array(
'Ivory\\GoogleMap' => __DIR__.'/../vendor/ivory-google-map/src',
// ...
);
Run the vendors script:
$ php bin/vendors update