PHPackages                             hyde/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. [Framework](/categories/framework)
4. /
5. hyde/cli

ActiveProject[Framework](/categories/framework)

hyde/cli
========

Experimental Standalone Version of HydePHP - The Static Site Generator You've Been Waiting For

v0.10.13(1y ago)3771[3 issues](https://github.com/hydephp/cli/issues)[8 PRs](https://github.com/hydephp/cli/pulls)MITPHPPHP ^8.1CI failing

Since Dec 10Pushed 6mo ago1 watchersCompare

[ Source](https://github.com/hydephp/cli)[ Packagist](https://packagist.org/packages/hyde/cli)[ Docs](https://hydephp.com)[ Fund](https://www.buymeacoffee.com/caen)[ Fund](https://opencollective.com/hydephp)[ RSS](/packages/hyde-cli/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (10)Dependencies (5)Versions (116)Used By (0)

Experimental Standalone HydePHP Executable
==========================================

[](#experimental-standalone-hydephp-executable)

[![Latest Version on Packagist](https://camo.githubusercontent.com/da1032453263946b3b3a30ffe7f5a74347dd5afabf7cf904c8786dff881150de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f687964652f636c693f696e636c7564655f70726572656c6561736573)](https://packagist.org/packages/hyde/cli)[![Total Installs on GitHub and Packagist](https://camo.githubusercontent.com/cf5dc56688a3f0976d4c6ecc9fa8824c94672bd4ccf781d9c335ffbe45cdbf4e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324668796465706870253246636c692532467472616666696325324664617461626173652e6a736f6e2671756572793d2532342e5f64617461626173652e746f74616c5f696e7374616c6c73266c6162656c3d496e7374616c6c73)](https://github.com/hydephp/cli)[![Total Downloads on GitHub](https://camo.githubusercontent.com/db4b33268080c1fdf9a0be5eb9dd0c19aa1ed31cf4d0e27f2fe7e22358355ec2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f64796e616d69632f6a736f6e3f75726c3d68747470732533412532462532467261772e67697468756275736572636f6e74656e742e636f6d25324668796465706870253246636c692532467472616666696325324664617461626173652e6a736f6e2671756572793d2532342e5f64617461626173652e746f74616c5f636c6f6e6573266c6162656c3d646f776e6c6f616473)](https://github.com/hydephp/cli)[![License MIT](https://camo.githubusercontent.com/faa5fb84acbcba758f66564f269860e6ece3cc2c737b61958ceffa7f4d569071/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f687964657068702f636c69)](https://github.com/hydephp/cli/blob/master/LICENSE.md)[![Test Coverage](https://camo.githubusercontent.com/d3644636f468ecb49d9928187b7f1b2708a505b74f039f5b54c91b3f40dd2db2/68747470733a2f2f636f6465636f762e696f2f67682f687964657068702f636c692f6272616e63682f6d61737465722f67726170682f62616467652e7376673f746f6b656e3d47364e32313631544f54)](https://codecov.io/gh/hydephp/cli)[![Test Suite](https://github.com/hydephp/cli/actions/workflows/tests.yml/badge.svg)](https://github.com/hydephp/cli/actions/workflows/tests.yml)

About
-----

[](#about)

This is an experimental standalone executable for the static site generator HydePHP.

With this global binary, you can use the HydePHP CLI to generate quality static sites faster than ever before!

### ⚠ Beta software notice

[](#-beta-software-notice)

Please note that the standalone HydePHP version is **experimental**, and that there may be breaking changes and bugs until the 1.0 release.

- In the meantime, you may want to use the standard HydePHP project:

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

[](#installation)

### Using Composer [![Total Installs on Packagist](https://camo.githubusercontent.com/b86e80ea5a84a07335fa66764193ce45e6232a05e7a139be10dcab0cc8e377b1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f687964652f636c693f6c6162656c3d696e7374616c6c73)](https://packagist.org/packages/hyde/cli)

[](#using-composer-)

```
composer global require hyde/cli
```

Make sure to place the Composer system-wide vendor bin directory in your `$PATH` so the `hyde` executable can be located by your system. This directory is typically located at `$HOME/.composer/vendor/bin`.

### Direct Download (Unix) [![Total Installs on GitHub](https://camo.githubusercontent.com/a69d3296776df6b445038dc4ea70035c7ce41f93774362527093edd29f00c403/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f646f776e6c6f6164732f687964657068702f636c692f746f74616c2e737667)](https://github.com/hydephp/cli/releases/latest)

[](#direct-download-unix-)

```
curl -L https://github.com/hydephp/cli/releases/latest/download/hyde -o hyde
chmod +x hyde && sudo mv hyde /usr/local/bin/hyde
```

### Docker (Highly Experimental)

[](#docker-highly-experimental)

Warning

The HydePHP CLI Docker image is under development and is highly experimental. Proceed with caution and report the bugs you will certainly encounter.

```
docker pull ghcr.io/hydephp/cli:latest
docker run --rm -it ghcr.io/hydephp/cli:latest
```

Using the Docker image allows you to run the HydePHP CLI without installing any other dependencies like PHP or Composer on your local machine.

If you want to use the HydePHP CLI Docker image as a global command, you can create a shell alias:

```
alias hyde='docker run --rm -it -v $(pwd):/app ghcr.io/hydephp/cli:latest'
```

Usage
-----

[](#usage)

```
# List available commands
hyde

# Create a new full HydePHP project
hyde new

# Build a site using source files in the working directory
hyde build
```

Resources
---------

[](#resources)

### Changelog

[](#changelog)

Please see [CHANGELOG](https://github.com/hydephp/cli/blob/master/CHANGELOG.md) for more information on what has changed recently.

### Contributing

[](#contributing)

HydePHP is an open-source project, contributions are very welcome! See [CONTRIBUTING.md](https://github.com/hydephp/cli/blob/master/CONTRIBUTING.md) for guidance.

### Security

[](#security)

If you discover any security-related issues, please email  instead of using the issue tracker. All vulnerabilities will be promptly addressed.

### Credits

[](#credits)

- [Caen De Silva](https://github.com/caendesilva), feel free to buy me a coffee!
- [All Contributors](https://github.com/hydephp/cli/graphs/contributors)

### License

[](#license)

The MIT License. Please see the [License File](https://github.com/hydephp/cli/blob/master/LICENSE.md) for more information.

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.8% 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 ~2 days

Total

106

Last Release

729d ago

### Community

Maintainers

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

---

Top Contributors

[![emmadesilva](https://avatars.githubusercontent.com/u/95144705?v=4)](https://github.com/emmadesilva "emmadesilva (1721 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (65 commits)")[![caendesilva](https://avatars.githubusercontent.com/u/225740250?v=4)](https://github.com/caendesilva "caendesilva (10 commits)")

---

Tags

frameworkHydestatic-site-generatorssghyde frameworkhydephpstatic site frameworkhydecli

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/hyde-cli/health.svg)

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

###  Alternatives

[hyde/hyde

Static Site Generator to rapidly create Blogs, Documentation Sites, and more, using Markdown and Blade.

4613.4k](/packages/hyde-hyde)[hemp/presenter

Easy Model Presenters in Laravel

247608.3k1](/packages/hemp-presenter)[pestphp/pest-plugin-stressless

Stressless plugin for Pest

68943.9k18](/packages/pestphp-pest-plugin-stressless)[wpstarter/framework

The WpStarter Framework - Laravel Framework for WordPress

1610.2k5](/packages/wpstarter-framework)

PHPackages © 2026

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