# AlexandriaConfigurationBundle

This bundle is the general configuration of Alexandria.

## Installation

Use Composer to install this bundle:

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

Add the bundle in your application kernel:

```php
// config/bundles.php

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