laikait/laika-cli

CLI generator tool for the Laika PHP MVC Framework

Maintainers

Package info

github.com/laikait/laika-cli

pkg:composer/laikait/laika-cli

Transparency log

Statistics

Installs: 34

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.01 2026-07-06 20:28 UTC

This package is auto-updated.

Last update: 2026-07-06 20:29:36 UTC


README

CLI generator for the Laika PHP MVC Framework.

Install

composer require laikait/laika-cli

Usage

php laika make:route users
php laika make:middleware Auth
php laika make:afterware Log
php laika make:model User --table=users --schema
php laika make:schema orders
php laika make:template admin/dashboard
php laika make:service Mailer
php laika make:controller UserController

php laika list:routes
php laika list:middleware
php laika list:models

php laika remove:model User
php laika remove:route users

php laika rename:model User Customer
php laika rename:route users clients

Global install

composer global require laikait/laika-cli
laika make:model User