PHPackages                             cjp2600/php-glow - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. cjp2600/php-glow

ActiveLibrary[HTTP &amp; Networking](/categories/http)

cjp2600/php-glow
================

Simple http request linker for roadrunner service.

v1.0.0(5y ago)05MITPHPPHP &gt;=7.0

Since Nov 23Pushed 5y ago1 watchersCompare

[ Source](https://github.com/cjp2600/php-glow)[ Packagist](https://packagist.org/packages/cjp2600/php-glow)[ RSS](/packages/cjp2600-php-glow/feed)WikiDiscussions master Synced 1w ago

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

GLOW CLIENT
===========

[](#glow-client)

Simple http request Orchestrate for RoadRunner.

### Roadrunner service [roadrunner-glow](https://github.com/cjp2600/roadrunner-glow)

[](#roadrunner-service-roadrunner-glow)

Example
-------

[](#example)

```
class GlowController
{
    public function test(): Response
    {
        // set glow configuration
        $config = new Configuration();

        // debug query information on rr output
        $config->setDebug(false);

        // init glow
        $glow = new Glow($config);

        // build sequences
        $glow->sequences(

            // first auth request
            ($glow->request('auth')
                ->setMethod('post')
                ->setUrl('https://api.example.com/api/v1/users/login')
                ->setData([
                    'email' => 'user@example.com',
                    'password' => 'PassWord',])
                // set $token variable use json path
                ->setVariable('token', '$.data.accessToken')),

            // parallel sequence wrapper
            // inside it, all requests will be executed in parallel
            $glow->parallel(
                // get current user from token and set $userId variable
                // default get method
                ($glow->request('current')
                    ->setAuth('$token') // use token variable form auth request
                    ->setUrl('https://api.example.com/api/v1/users/current')
                    ->setVariable('userId', '$.data.id')),

                // get user notices
                ($glow->request('count')
                    ->setAuth('$token')
                    ->setUrl('https://api.example.com/api/v1/notices/count'))
            )

        );

        // execute all jobs
        $response = $glow->execute();

        // get data from responses
        $user = $response->getResponse('current');
        $notices = $response->getResponse('count');

        return new Response(
            ' User: ' . $user->data->firstName . '    Notices count: ' . $notices->data->totalCount . ' '
        );
    }
}
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

2002d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0dc4712097fb7c1e052223bf521d8f0325425066229af068b3ae84d634588d58?d=identicon)[cjp2600\_](/maintainers/cjp2600_)

---

Top Contributors

[![cjp2600](https://avatars.githubusercontent.com/u/1980974?v=4)](https://github.com/cjp2600 "cjp2600 (3 commits)")

---

Tags

httpphproadrunner

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cjp2600-php-glow/health.svg)

```
[![Health](https://phpackages.com/badges/cjp2600-php-glow/health.svg)](https://phpackages.com/packages/cjp2600-php-glow)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)

PHPackages © 2026

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