PHPackages                             bavix/glow-flysystem - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. bavix/glow-flysystem

AbandonedArchivedLibrary[File &amp; Storage](/categories/file-storage)

bavix/glow-flysystem
====================

Adapter for work with Glow CDN using flysystem

1.3.1(5y ago)111MITPHPPHP &gt;=7.3

Since Aug 27Pushed 5y ago1 watchersCompare

[ Source](https://github.com/bavix/glow-flysystem)[ Packagist](https://packagist.org/packages/bavix/glow-flysystem)[ RSS](/packages/bavix-glow-flysystem/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (10)Dependencies (4)Versions (16)Used By (0)

Glow Flysystem Adapter
======================

[](#glow-flysystem-adapter)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/711ab86b00860c76aec1c3de9478f77cebf107da4c284c3afb0ac16c62b4341c/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62617669782f676c6f772d666c7973797374656d2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/bavix/glow-flysystem/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/ca0401414b3c5493c70f588d6b21c8e3343be418472d90c4f8da84b1ff526541/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62617669782f676c6f772d666c7973797374656d2f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/bavix/glow-flysystem/?branch=master)[![Build Status](https://camo.githubusercontent.com/0dca099b179c1ec9ec61c7f6f51153ba3060d9cbb5d1a99089b532450260039e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62617669782f676c6f772d666c7973797374656d2f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/bavix/glow-flysystem/build-status/master)[![Code Intelligence Status](https://camo.githubusercontent.com/a2e4f8325e559e84ecc577061aeb8ac8e5951914ecff956372e00a4cb2234d16/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62617669782f676c6f772d666c7973797374656d2f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](https://scrutinizer-ci.com/code-intelligence)

[![Package Rank](https://camo.githubusercontent.com/1cfc0d822e3cbf1f74a920aa35158b38a2fbdc2d423e35394bff57c0eb81aad5/68747470733a2f2f7068707061636b616765732e6f72672f702f62617669782f676c6f772d666c7973797374656d2f62616467652f72616e6b2e737667)](https://packagist.org/packages/bavix/glow-flysystem)[![Latest Stable Version](https://camo.githubusercontent.com/b8a98217352d273785c60f4ad676386c939326088b24c14374f5e709243644a6/68747470733a2f2f706f7365722e707567782e6f72672f62617669782f676c6f772d666c7973797374656d2f762f737461626c65)](https://packagist.org/packages/bavix/glow-flysystem)[![Latest Unstable Version](https://camo.githubusercontent.com/9382e9c2f9c1b4fad1db4f5257177f41210d8d587d60e77d10dca790fb01a51c/68747470733a2f2f706f7365722e707567782e6f72672f62617669782f676c6f772d666c7973797374656d2f762f756e737461626c65)](https://packagist.org/packages/bavix/glow-flysystem)[![License](https://camo.githubusercontent.com/05e12409de0e1ef73faae30fdf520a99071f0c96560d4331441ba2d05e3bb82e/68747470733a2f2f706f7365722e707567782e6f72672f62617669782f676c6f772d666c7973797374656d2f6c6963656e7365)](https://packagist.org/packages/bavix/glow-flysystem)[![composer.lock](https://camo.githubusercontent.com/38f706ed50a5139f58c2c3abb1ff9608a30f73185828f389f79b2f7efb81b713/68747470733a2f2f706f7365722e707567782e6f72672f62617669782f676c6f772d666c7973797374656d2f636f6d706f7365726c6f636b)](https://packagist.org/packages/bavix/glow-flysystem)

Glow Flysystem Adapter - Easy work with Glow CDN API.

- **Vendor**: bavix
- **Package**: Glow Flysystem
- **Version**: [![Latest Stable Version](https://camo.githubusercontent.com/b8a98217352d273785c60f4ad676386c939326088b24c14374f5e709243644a6/68747470733a2f2f706f7365722e707567782e6f72672f62617669782f676c6f772d666c7973797374656d2f762f737461626c65)](https://packagist.org/packages/bavix/glow-flysystem)
- **Laravel Version**: `7.x`
- **PHP Version**: 7.3+
- **[Composer](https://getcomposer.org/):** `composer require bavix/glow-flysystem`

### Usage

[](#usage)

Add disk in config `config/filesystems.php`.

```
    'disks' => [
        'glow' => [
            'driver' => 'glow',
            'bucket' => env('GLOW_BUCKET'),
            'url' => env('GLOW_URL'),
            'endpoint' => env('GLOW_ENDPOINT'),
            'token' => env('GLOW_TOKEN'),
            'visibility' => 'public',
        ],
    ],
```

Usage example.

```
use Illuminate\Support\Facades\Storage;

$glow = Storage::disk('glow');
$glow->put('glow.txt', 'Hello, flysystem!');
var_dump($glow->url('glow.txt')); // URL for download file
var_dump($glow->delete('glow.txt'));
```

---

Supported by

[![Supported by JetBrains](https://camo.githubusercontent.com/426b71c1485422e61c59d8b7fec03f4ba626dd77443847c0a14053491eb8fc4a/68747470733a2f2f63646e2e7261776769742e636f6d2f62617669782f646576656c6f706d656e742d7468726f7567682f34363437356234622f6a6574627261696e732e737667)](https://www.jetbrains.com/)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

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

Every ~1 days

Total

15

Last Release

2074d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/266f28651b740a279e636ef42fadcc7d72941c7a4bf9a29c4fd62c72476f0c0e?d=identicon)[REZ1DENT3](/maintainers/REZ1DENT3)

---

Top Contributors

[![rez1dent3](https://avatars.githubusercontent.com/u/5111255?v=4)](https://github.com/rez1dent3 "rez1dent3 (20 commits)")

---

Tags

flysystemflysystem-adapterglowglow-flysystemlaravelpackagesdkFlysystemlaravelfilemanagercdnglow

### Embed Badge

![Health badge](/badges/bavix-glow-flysystem/health.svg)

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

###  Alternatives

[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[alexusmai/laravel-file-manager

File manager for Laravel

1.2k757.8k8](/packages/alexusmai-laravel-file-manager)[itskodinger/midia

Simple Media manager for your Laravel project

1415.8k](/packages/itskodinger-midia)

PHPackages © 2026

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