PHPackages                             wpdiggerstudio/wpzylos-cli-devtool - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. wpdiggerstudio/wpzylos-cli-devtool

ActiveLibrary[CLI &amp; Console](/categories/cli)

wpdiggerstudio/wpzylos-cli-devtool
==================================

Development CLI tool for scaffolding WPZylos plugins with generators for controllers, requests, migrations, and more

v1.0.1(3mo ago)05MITPHPPHP ^8.0CI passing

Since Feb 1Pushed 3mo agoCompare

[ Source](https://github.com/WPDiggerStudio/wpzylos-cli-devtool)[ Packagist](https://packagist.org/packages/wpdiggerstudio/wpzylos-cli-devtool)[ Docs](https://github.com/WPDiggerStudio/wpzylos-cli-devtool)[ Fund](https://www.paypal.com/donate/?hosted_button_id=66U4L3HG4TLCC)[ RSS](/packages/wpdiggerstudio-wpzylos-cli-devtool/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (5)Versions (3)Used By (0)

WPZylos CLI Devtool
===================

[](#wpzylos-cli-devtool)

[![PHP Version](https://camo.githubusercontent.com/911a83e2aa6fe73660ab613629a95c76622bf03049a7344e80c5ea72d4ef9c7d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545382e302d626c7565)](https://php.net)[![License](https://camo.githubusercontent.com/f8df3091bbe1149f398a5369b2c39e896766f9f6efba3477c63e9b4aa940ef14/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e)](LICENSE)[![GitHub](https://camo.githubusercontent.com/dbe820b98864e115173c422b9472b725cfa678bee03b66ff2c453dad95a3d20b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4769744875622d575044696767657253747564696f2d3138313731373f6c6f676f3d676974687562)](https://github.com/WPDiggerStudio/wpzylos-cli-devtool)

Development CLI tool for scaffolding WPZylos plugins and generating boilerplate code.

📖 **[Full Documentation](https://wpzylos.com)** | 🐛 **[Report Issues](https://github.com/WPDiggerStudio/wpzylos-cli-devtool/issues)**

---

✨ Features
----------

[](#-features)

- **make:plugin** — Create a new plugin from the WPZylos scaffold
- **make:controller** — Generate controller classes with CRUD methods
- **make:request** — Generate FormRequest validation classes
- **make:migration** — Generate database migration files

---

📋 Requirements
--------------

[](#-requirements)

RequirementVersionPHP^8.0Symfony Console^6.0 || ^7.0---

🚀 Installation
--------------

[](#-installation)

Install as a dev dependency in your plugin:

```
composer require --dev wpdiggerstudio/wpzylos-cli-devtool
```

---

📖 Quick Start
-------------

[](#-quick-start)

After installing the package, you have **two options** to run CLI commands:

### Option 1: Use Vendor Binary Directly

[](#option-1-use-vendor-binary-directly)

Run commands directly from vendor/bin:

```
vendor/bin/wpzylos list
vendor/bin/wpzylos make:controller ProductController
```

### Option 2: Create Root Executable (Recommended)

[](#option-2-create-root-executable-recommended)

For a cleaner experience like Laravel's `php artisan`, run the installer once:

```
vendor/bin/wpzylos-install
```

This creates a `wpzylos` file in your project root. Then use:

```
php wpzylos list
php wpzylos make:controller ProductController
php wpzylos make:request StoreProductRequest
php wpzylos make:migration create_products_table
```

---

🛠️ Available Commands
---------------------

[](#️-available-commands)

### make:plugin

[](#makeplugin)

Create a new WPZylos plugin from the scaffold template.

```
# Using vendor binary
vendor/bin/wpzylos make:plugin my-plugin

# Or using root executable (after running wpzylos-install)
php wpzylos make:plugin my-plugin
php wpzylos make:plugin my-plugin --namespace=MyCompany\\MyPlugin
```

### make:controller

[](#makecontroller)

Generate a controller class.

```
php wpzylos make:controller ProductController
php wpzylos make:controller ProductController --resource
```

**Options:**

- `--resource` — Generate a resource controller with CRUD methods (index, show, store, update, destroy)

### make:request

[](#makerequest)

Generate a FormRequest validation class.

```
php wpzylos make:request StoreProductRequest
php wpzylos make:request UpdateUserRequest
```

### make:migration

[](#makemigration)

Generate a database migration file.

```
php wpzylos make:migration create_products_table
php wpzylos make:migration create_orders_table --create=orders
php wpzylos make:migration add_status_to_orders --table=orders
```

**Options:**

- `--create=` — Generate migration for creating a new table
- `--table=` — Generate migration for modifying an existing table

---

📁 Generated File Locations
--------------------------

[](#-generated-file-locations)

CommandOutput Path`make:controller``app/Http/Controllers/``make:request``app/Http/Requests/``make:migration``database/migrations/`---

🔧 Configuration
---------------

[](#-configuration)

The CLI tool automatically detects your plugin's configuration from `composer.json`:

```
{
  "autoload": {
    "psr-4": {
      "MyPlugin\\": "app/"
    }
  }
}
```

---

🧪 Testing
---------

[](#-testing)

```
# Run all tests
composer test

# Run with coverage
./vendor/bin/phpunit --coverage-html coverage/
```

---

📦 Related Packages
------------------

[](#-related-packages)

PackageDescription[wpzylos-cli-core](https://github.com/WPDiggerStudio/wpzylos-cli-core)Stub compilation utilities[wpzylos-wp-cli](https://github.com/WPDiggerStudio/wpzylos-wp-cli)WP-CLI integration[wpzylos-scaffold](https://github.com/WPDiggerStudio/wpzylos-scaffold)Plugin template[wpzylos-core](https://github.com/WPDiggerStudio/wpzylos-core)Application foundation---

📖 Documentation
---------------

[](#-documentation)

For comprehensive documentation, tutorials, and API reference, visit **[wpzylos.com](https://wpzylos.com)**.

---

☕ Support the Project
---------------------

[](#-support-the-project)

If you find this tool helpful, consider buying me a coffee! Your support helps maintain and improve the WPZylos ecosystem.

[ ![Donate with PayPal](https://camo.githubusercontent.com/ab874f7381c27789efc0a8502714f480bb5ddcc2de7008417d26b5069068341c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f6e6174652d50617950616c2d626c75652e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d70617970616c)](https://www.paypal.com/donate/?hosted_button_id=66U4L3HG4TLCC)---

📄 License
---------

[](#-license)

MIT License. See [LICENSE](LICENSE) for details.

---

🤝 Contributing
--------------

[](#-contributing)

Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

---

**Made with ❤️ by [WPDiggerStudio](https://github.com/WPDiggerStudio)**

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance80

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3 days

Total

2

Last Release

103d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/87be74120ef333e9f794308da1fdcb9505f3e1b255926014a144e6360bb29c08?d=identicon)[WPDiggerStudio](/maintainers/WPDiggerStudio)

---

Top Contributors

[![WPDiggerStudio](https://avatars.githubusercontent.com/u/55980087?v=4)](https://github.com/WPDiggerStudio "WPDiggerStudio (5 commits)")

---

Tags

cliwordpressscaffoldinggeneratorsdevelopment-toolcode-generationwpzylosmake-command

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/wpdiggerstudio-wpzylos-cli-devtool/health.svg)

```
[![Health](https://phpackages.com/badges/wpdiggerstudio-wpzylos-cli-devtool/health.svg)](https://phpackages.com/packages/wpdiggerstudio-wpzylos-cli-devtool)
```

###  Alternatives

[wp-cli/wp-cli

WP-CLI framework

5.1k17.2M320](/packages/wp-cli-wp-cli)[wp-cli/wp-cli-bundle

WP-CLI bundle package with default commands.

896.3M131](/packages/wp-cli-wp-cli-bundle)[laminas/laminas-cli

Command-line interface for Laminas projects

563.7M54](/packages/laminas-laminas-cli)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
