# Installation

Ecotone comes with full automation for setting up Event Sourcing for us. This we can we really easily roll out new features with Event Sourcing with just minimal or none setup at all.

### Install Event Sourcing Support

Before we will start, let's first install Event Sourcing module, which will provide us with all required components:

```php
composer require ecotone/pdo-event-sourcing
```

We need to configure [DBAL Support](https://docs.ecotone.tech/modules/dbal-support) in order to make use of it.

Ecotone PDO Event Sourcing does provide support for three databases:

* PostgreSQL
* MySQL
* MariaDB

### Install Inbuilt Serialization Support

Ecotone provides inbuilt functionality to serialize your Events, which can be customized in case of need. This makes Ecotone take care of Event Serialization/Deserialization, and allows us to focus on the business side of the code.

We can take over this process and set up our own [Serialization](https://docs.ecotone.tech/messaging/conversion/conversion), however [Ecotone JMS Converter](https://docs.ecotone.tech/modules/jms-converter) can fully do it for us, so we can simply focus on the business side of the code. To make it happen all we need to do, is to install JMS Package and we are ready to go:

```php
composer require ecotone/jms-converter
```
