PHPackages                             djiele/command-line-parser - 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. djiele/command-line-parser

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

djiele/command-line-parser
==========================

A flexible command line parser

00PHP

Since Aug 21Pushed 5y ago1 watchersCompare

[ Source](https://github.com/djiele/command-line-parser)[ Packagist](https://packagist.org/packages/djiele/command-line-parser)[ RSS](/packages/djiele-command-line-parser/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

command-line-parser
===================

[](#command-line-parser)

A flexible command line parser inspired by PHP getopt parser. Supports short and long options, compact and inline options.

##### Installation

[](#installation)

You can install the package via composer:

```
composer require djiele/command-line-parser dev-master

```

##### Usage

[](#usage)

```
./demo.php -dw ./logs --script ./bin/run.php --dont-watch ./run.pid -k9 -ak -- inline option

```

```
require_once __DIR__'./vendor/autoload.php';
use Djiele\Script\CommandLineParser;
$opts = [
	'dw' => 'dont-watch:', // required option
	's:' => 'script:', // required option
	'k' => 'kill-signal::', // optional
	'ak' => 'auto-kill', // === true if set
	'h' => 'help' // === true if set
];
$args = new CommandLineParser($opts);
var_export($args->parse());
```

```
returns:
array (
  'dont-watch' =>
  array (
    0 => './logs',
    1 => './run.pid',
  ),
  'script' => './bin/run.php',
  'kill-signal' => '9',
  'auto-kill' => true,
  '' => 'inline option',
)

```

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/40306999?v=4)[djiele](/maintainers/djiele)[@djiele](https://github.com/djiele)

---

Top Contributors

[![djiele](https://avatars.githubusercontent.com/u/40306999?v=4)](https://github.com/djiele "djiele (2 commits)")

### Embed Badge

![Health badge](/badges/djiele-command-line-parser/health.svg)

```
[![Health](https://phpackages.com/badges/djiele-command-line-parser/health.svg)](https://phpackages.com/packages/djiele-command-line-parser)
```

###  Alternatives

[wp-cli/wp-cli

WP-CLI framework

5.0k17.2M320](/packages/wp-cli-wp-cli)[consolidation/annotated-command

Initialize Symfony Console commands from annotated command class methods.

22569.8M19](/packages/consolidation-annotated-command)[chi-teck/drupal-code-generator

Drupal code generator

26947.8M5](/packages/chi-teck-drupal-code-generator)[seld/cli-prompt

Allows you to prompt for user input on the command line, and optionally hide the characters they type

24725.8M17](/packages/seld-cli-prompt)[illuminate/console

The Illuminate Console package.

12944.1M5.1k](/packages/illuminate-console)[php-tui/php-tui

Comprehensive TUI library heavily influenced by Ratatui

589747.0k6](/packages/php-tui-php-tui)

PHPackages © 2026

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