With multiple migration sources it may be inconvenient to type each class in array. In such case it may be better to group all migrations in directories. In such case it is required that (besides each class MUST extend `WPDesk\Migrations\AbstractMigration` class) file names starting with **Version** prefix.
Assuming following directory structure:
```
project\
migrations\
Version_01012022.php
Version_12012022.php
XVersion_13012022.php # This will be skipped
main.php
```
You can register your migration classes in the following way: