PHPackages                             aliengen/pachyderm-console - 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. aliengen/pachyderm-console

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

aliengen/pachyderm-console
==========================

A command tool for Pachyderm

012PHP

Since Nov 20Pushed 5mo agoCompare

[ Source](https://github.com/AlienGen/pachyderm-console)[ Packagist](https://packagist.org/packages/aliengen/pachyderm-console)[ RSS](/packages/aliengen-pachyderm-console/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Pachyderm Console
=================

[](#pachyderm-console)

[![PHP Version](https://camo.githubusercontent.com/9c2f8ad80d34105266a94c4c06234f8ed18c968d3595039c2d9a7becd1e71c8b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253345253344382e342d626c75652e737667)](https://php.net)[![License](https://camo.githubusercontent.com/8bb50fd2278f18fc326bf71f6e88ca8f884f72f179d3e555e20ed30157190d0d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)](LICENSE)

A simple and reliable console tool. Create CLI commands to execute code.

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

[](#-features)

- **🔄 Auto-Discovery**: No need to register your commands
- **⚡ Zero Config**: Works out of the box
- **🤖 Easy Setup**: Simple command to set up the console structure

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

[](#-requirements)

- **PHP**: 8.4 or higher
- **Composer**: For dependency management

🚀 Quick Start
-------------

[](#-quick-start)

### Installation

[](#installation)

```
composer require aliengen/pachyderm-console
```

### Setup

[](#setup)

After installation, run the setup command to create the necessary files:

```
./vendor/bin/pachyderm-console --setup
```

This will automatically create:

- `src/Commands/` folder for your commands files
- `console.php` file for easy execution

### Basic Usage

[](#basic-usage)

1. **Create a command** by adding a class to `src/Commands/`:

```
