# AlexandriaI18nBundle

This bundle unleashes a internationalization on Symfony applications.

## Installation

Use Composer to install this bundle:

```console
$ composer require alexandria/i18n-bundle
```

Add the bundle in your application kernel:

```php
// config/bundles.php

return [
    // ...
    Alexandria\I18nBundle\AlexandriaI18nBundle::class => ['all' => true],
    // ...
];
```