PHPackages                             xenolope/grizzwald - 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. [API Development](/categories/api)
4. /
5. xenolope/grizzwald

ActiveLibrary[API Development](/categories/api)

xenolope/grizzwald
==================

A client library to interact with the CoreOS fleet API

1.0.0(10y ago)113MITPHPPHP &gt;5.5

Since Aug 11Pushed 10y ago1 watchersCompare

[ Source](https://github.com/jonjomckay/grizzwald)[ Packagist](https://packagist.org/packages/xenolope/grizzwald)[ RSS](/packages/xenolope-grizzwald/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Grizzwald
=========

[](#grizzwald)

*"Grizz was in the Navy"* - **Tracy Jordan, 30 Rock (S01E01: The Aftermath)**

Description
-----------

[](#description)

Grizzwald is a simple PHP library that interacts with the [CoreOS fleet API](https://coreos.com/fleet/docs/latest/api-v1.html), for easy management of your cluster's unit files.

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

[](#installation)

The library can be installed with Composer, by including the following in your `composer.json`:

```
{
    "require": {
        "xenolope/grizzwald": "~1.0"
    }
}
```

Usage
-----

[](#usage)

```
// Create a new instance of the client, passing in the base URL to your fleet instance
$client = new FleetClient('http://172.16.1.100:49153');

// Get a list of all the machines in the cluster
$machines = $client->listMachines(); // Returns an array of \Xenolope\Grizzwald\Entity\Machine objects

// Get a list of all the unit states in the cluster
$states = $client->listUnitStates(); // Returns an array of \Xenolope\Grizzwald\Entity\UnitState objects

// Get a list of all the units in the cluster
$units = $client->listUnits(); // Returns an array of \Xenolope\Grizzwald\Entity\Unit objects

// Get a single unit from the cluster
$unit = $client->getUnit('nginx.service'); // Returns a \Xenolope\Grizzwald\Entity\Unit object

// Create a new unit on the cluster
$unit = new Unit('nginx.service', [
    new UnitOption('Service', 'ExecStart', '/usr/sbin/nginx') // One or more UnitOptions are required
], Unit::STATE_LAUNCHED);

$client->createUnit($unit);

// Modify an existing unit on the cluster
$unit = new Unit('nginx.service', Unit::STATE_LOADED);

$client->modifyUnit($unit);

// Destroy a unit on the cluster
$client->destroyUnit('nginx.service');
```

License
-------

[](#license)

Grizzwald is released under the MIT License; please see [LICENSE](LICENSE) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Unknown

Total

1

Last Release

3926d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6749b31cc9bc30bf922a93dfae8bb3132bc2e2051be3bc7c9e5ac0b91fe0bfd3?d=identicon)[jonjomckay](/maintainers/jonjomckay)

---

Top Contributors

[![jonjomckay](https://avatars.githubusercontent.com/u/456645?v=4)](https://github.com/jonjomckay "jonjomckay (7 commits)")

### Embed Badge

![Health badge](/badges/xenolope-grizzwald/health.svg)

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

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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