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 3w 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 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

2047d 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

[php-http/cache-plugin

PSR-6 Cache plugin for HTTPlug

25126.1M82](/packages/php-http-cache-plugin)[illuminate/http

The Illuminate Http package.

11937.9M6.9k](/packages/illuminate-http)[rdkafka/rdkafka

A PHP extension for Kafka

2.2k24.3k1](/packages/rdkafka-rdkafka)[httpsoft/http-message

Strict and fast implementation of PSR-7 and PSR-17

87965.9k114](/packages/httpsoft-http-message)[mezzio/mezzio-router

Router subcomponent for Mezzio

265.4M90](/packages/mezzio-mezzio-router)[serpapi/google-search-results-php

Get Google, Bing, Baidu, Ebay, Yahoo, Yandex, Home depot, Naver, Apple, Duckduckgo, Youtube search results via SerpApi.com

69127.2k](/packages/serpapi-google-search-results-php)

PHPackages © 2026

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