Dblizer helps you to export or reformat your older MySQL database to Excel (Currently). In the next version we aim to support from another database and another export format.
Clone this repository.
git clone https://github.com/nesia-id/dblizer.git
install application dependency
composer install
Copy or rename .env.exampe to .env. Then set your database configuration. .env file used as default database configuration for export command. You can see example in .env.example.
DB_HOST=your_database_server
DB_PORT=your_database_port
DB_DATABASE=your_database_name
DB_USERNAME=your_database_user
DB_PASSWORD=your_database_password
1. Generate export file
php db make:export [table] [alias]
export file used to read your old database table and reformat table's structure to new one. table is your table name. this is required option, while alias is optional. alias is replacement for old table name with new one. alias also be used to renamed the export file.
2. Export database
php db export:excel [export]
(currently we only support excel format)
export is export file located at /export folder. export argument is optional. If you set export argument, then it will only run selected export file. if no argument given, it will run all export files
- Symfony Console - engine
- ReadbeanPHP- database
- PHPSpreadsheet - spreadsheet library
- CakePHP Inflector
Database support:
- MySQL / MariaDB
- PostgreSQL
- MS-SQL
- SQLite
Export support:
- Excel 2007+ / Spreadsheet
- CSV
- Excel 2003
- MySQL / MariaDB (SQL File)
- JSON