๐ Introducing my new PHP CLI Utility for Database Management
After a long week of coding, Iโm excited to share something Iโve been updating: a standalone CLI tool that makes database management tasks faster and framework-agnostic.
๐ Repo: https://github.com/tamedevelopers/database
๐น What it does
This CLI gives you powerful database operations out of the box, without any application setup or framework conflicts.
Create Database Schema - Migrations
Converts .sql file into a migration database schema. Works with default DB packages or Laravel schema (using flags --type=laravel)
Export Database
Dump your entire database into a .sql file. Optionally compress the file into .zip or .rar for easy backups and sharing.
Import Database
Seamlessly restore a database from a .sql file into your target environment.
๐น Why itโs different
โ
Zero framework collision โ runs independently, doesnโt interfere with Laravel or any PHP framework.
โ
Standalone โ no setup required, plug and play.
โ
Lightweight โ only focuses on whatโs needed most for DB handling.
๐น Use Cases
Entire DB ORM - For Vanilla PHP by default
Quick schema setup in a new environment.
Exporting & compressing databases for backups.
Importing .sql files without opening a GUI or phpMyAdmin.
Top comments (0)