PHPackages                             agence-adeliom/lumberjack-cli - 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. agence-adeliom/lumberjack-cli

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

agence-adeliom/lumberjack-cli
=============================

1.1.7(3y ago)14.5k[3 PRs](https://github.com/agence-adeliom/lumberjack-cli/pulls)MITPHPPHP ^7.1|^8.0

Since Jun 23Pushed 3y agoCompare

[ Source](https://github.com/agence-adeliom/lumberjack-cli)[ Packagist](https://packagist.org/packages/agence-adeliom/lumberjack-cli)[ Docs](https://github.com/agence-adeliom/lumberjack-cli)[ RSS](/packages/agence-adeliom-lumberjack-cli/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (7)Versions (23)Used By (0)

Adeliom LumberJack CLI
======================

[](#adeliom-lumberjack-cli)

This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require agence-adeliom/lumberjack-cli
```

Once installed you need to copy the `console` file into your Lumberjack theme directory.

It is assuming you're using Lumberjack inside Bedrock. If not, you may need to make some changes to paths in the `console` file

Basic Usage
-----------

[](#basic-usage)

You can now access the Adeliom CLI from inside your Lumberjack theme directory:

### Available commands

[](#available-commands)

```
  help                    Displays help for a command
  list                    Lists commands
 make
  make:admin              Create a Admin
  make:ajax               Create a Ajax Action
  make:controller         Create a Controller
  make:cron               Create a Cron Job
  make:env                Create a environement
  make:event              Create a Event Listener
  make:exception          Create a Exception
  make:flex-layout        Create a FlexibleLayout
  make:form               Create a Form
  make:hook               Create a Hooks Class
  make:posttype           Create a PostType
  make:provider           Create a ServiceProvider
  make:taxonomy           Create a Taxonomy
  make:viewmodel          Create a ViewModel
 route
  route:list              List all registered routes

```

### To show available commands

[](#to-show-available-commands)

```
php console list

```

### To run a command

[](#to-run-a-command)

For a given command called `test:command` you would run the following:

```
php console test:command

```

### Get additional help about a command

[](#get-additional-help-about-a-command)

For a given command called `test:command` you would run the following:

```
php console help test:command

```

Adding Commands
---------------

[](#adding-commands)

To add additional commands to Adeliom CLI add them to `config/commands.php` (create the file if it doesn't exist).

```
// config/commands.php

return [
    'commands' => [
        MyCommand::class,
    ],
];
```

Writing Commands
----------------

[](#writing-commands)

Create a subclass of `Adeliom\WP\CLI\Commands\Command`:

```
namespace MyNamespace;

use Adeliom\WP\CLI\Commands\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class ControllerMake extends Command
{
    protected $signature = 'test:command {paramName : The description of the parameter}';

    protected $description = 'A description of the command';

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        // Command implementation
    }
}
```

Adeliom CLI uses the same `$signature` syntax as Laravel, [see here](https://laravel.com/docs/5.6/artisan#writing-commands) for more information.

Adeliom CLI `Command` is a subclass of Symfony's `Command` object, for more information on how to implement the `execute()` function [see here](https://symfony.com/doc/current/console.html).

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Adeliom](https://github.com/adeliom)
- [Arnaud Ritti](https://github.com/aritti)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 95.2% 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 ~45 days

Recently: every ~157 days

Total

18

Last Release

1391d ago

PHP version history (2 changes)v1.0.0PHP ^7.1

1.1.6PHP ^7.1|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/6471ac11bb69c46070e9140c9272639d3fe4b569c68ef8cde7cf60b0aa4ce9e6?d=identicon)[arnaud-ritti](/maintainers/arnaud-ritti)

![](https://www.gravatar.com/avatar/f84eb060084594eb8f047a7244c2bf238f7e677850a26457610402bc30030afe?d=identicon)[adeliom](/maintainers/adeliom)

---

Top Contributors

[![aritti](https://avatars.githubusercontent.com/u/51155699?v=4)](https://github.com/aritti "aritti (20 commits)")[![Antoinewaag](https://avatars.githubusercontent.com/u/51699943?v=4)](https://github.com/Antoinewaag "Antoinewaag (1 commits)")

---

Tags

arittiadeliom-wp-cli

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/agence-adeliom-lumberjack-cli/health.svg)

```
[![Health](https://phpackages.com/badges/agence-adeliom-lumberjack-cli/health.svg)](https://phpackages.com/packages/agence-adeliom-lumberjack-cli)
```

###  Alternatives

[illuminate/console

The Illuminate Console package.

12944.1M5.1k](/packages/illuminate-console)[crazywhalecc/static-php-cli

Build single static PHP binary, with PHP project together, with popular extensions included.

1.8k13.9k](/packages/crazywhalecc-static-php-cli)[matthiasnoback/symfony-console-form

Use Symfony forms for Console command input

368264.8k8](/packages/matthiasnoback-symfony-console-form)[phpcr/phpcr-shell

Shell for PHPCR

721.3M8](/packages/phpcr-phpcr-shell)[madewithlove/license-checker

CLI tool to verify allowed licenses for composer dependencies

54449.8k21](/packages/madewithlove-license-checker)[shel/neos-terminal

Neos CMS Ui terminal for running Eel expressions and other commands

1441.3k](/packages/shel-neos-terminal)

PHPackages © 2026

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