oliverde8 / php-etl-easyadmin-bundle
Add interfaces to see execution & to run executions of the php-etl.
Package info
github.com/oliverde8/phpEtlEasyAdminBundle
pkg:composer/oliverde8/php-etl-easyadmin-bundle
Requires
- php: >=8.3
- easycorp/easyadmin-bundle: ^5.2
- oliverde8/php-etl-bundle: ^2.0
Requires (Dev)
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2026-07-21 09:09:04 UTC
README
The Php etl easy admin bundle allows the usage of Oliver's PHP Etl library in symfony. Add's an integration to easy admin as well in order to see a list of the executions:
And also a details on each execution. Logs of each execution and files processed in each execution can also be found here
Also provides a dashboard to see current state.
Installation
-
Install using composer
-
in
/config/create a directoryetl -
Enable bundle:
Oliverde8\PhpEtlEasyAdminBundle\Oliverde8PhpEtlEasyAdminBundle::class => ['all' => true],
- Add to easy admin
// EtlDashboardController exposes the stats page via #[AdminRoute(name: 'etl_execution_dashboard')]. // EasyAdmin prefixes it with your Dashboard's own route name, e.g. "admin_etl_execution_dashboard". yield MenuItem::linkToRoute("Job Dashboard", 'fas fa-chart-bar', "admin_etl_execution_dashboard"); yield MenuItem::linkToCrud('Etl Executions', 'fas fa-list', EtlExecution::class);
- Enable routes
etl_bundle: resource: '@Oliverde8PhpEtlEasyAdminBundle/Controller' type: attribute prefix: /admin
- Optional: Enable queue if you wish to allow users from the easy admin panel to do executions.
framework: messenger: routing: "Oliverde8\PhpEtlBundle\Message\EtlExecutionMessage": async
- Optional: Enable creation of individual files for each log by editing the monolog.yaml
etl: type: service id: Oliverde8\PhpEtlBundle\Services\ChainExecutionLogger level: debug channels: ["!event"]
Usage
Please check the documentation of the Php Etl Bundle
For more information on how the etl works and how to create operations check the Php Etl Documentation
TODO
- Add possibility to create etl chains definitions from the interface.


