PHPackages                             nexxai/laravel-gallery - 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. nexxai/laravel-gallery

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

nexxai/laravel-gallery
======================

A Laravel wrapper for gallery-dl

v0.5.0(3mo ago)0195↓74.1%MITPHPPHP ^8.4

Since Mar 30Pushed 3mo agoCompare

[ Source](https://github.com/nexxai/laravel-gallery)[ Packagist](https://packagist.org/packages/nexxai/laravel-gallery)[ RSS](/packages/nexxai-laravel-gallery/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (5)Dependencies (5)Versions (6)Used By (0)

Laravel Gallery
===============

[](#laravel-gallery)

A Laravel wrapper around `gallery-dl` for profile scans.

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

[](#installation)

```
composer require nexxai/laravel-gallery
php artisan vendor:publish --tag=gallery-dl-config
php artisan gallery-dl:install
```

The install command downloads the standalone binary into `tools/gallery-dl` by default. You can install to a custom directory with `php artisan gallery-dl:install --path=some/dir`.

Configuration
-------------

[](#configuration)

Published config: `config/gallery-dl.php`

```
return [
    'binary_path' => base_path('tools/gallery-dl' . (PHP_OS_FAMILY === 'Windows' ? '.exe' : '.bin')),
    'binary_download_url' => env(
        'GALLERY_DL_BINARY_DOWNLOAD_URL',
        PHP_OS_FAMILY === 'Windows'
            ? 'https://github.com/mikf/gallery-dl/releases/latest/download/gallery-dl.exe'
            : 'https://github.com/mikf/gallery-dl/releases/latest/download/gallery-dl.bin'
    ),
    'timeout' => 300,
];
```

Usage
-----

[](#usage)

```
use Nexxai\LaravelGallery\GalleryDlClient;

$gallery = app(GalleryDlClient::class);

// Basic binary check
$available = $gallery->isAvailable();

// Resolve profile entries as decoded JSON
$items = $gallery->resolve('https://www.instagram.com/some-profile/', dateAfter: now()->subDay());

// Pass a cookies file for this run
$items = $gallery->resolve(
    'https://www.instagram.com/some-profile/',
    dateAfter: now()->subDay(),
    cookiesPath: '/absolute/path/to/cookies.txt',
);
```

When no date is passed, all available items are fetched.

###  Health Score

39

—

LowBetter than 85% of packages

Maintenance82

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity45

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 ~0 days

Total

5

Last Release

91d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4316564?v=4)[JT Smith](/maintainers/nexxai)[@nexxai](https://github.com/nexxai)

---

Top Contributors

[![nexxai](https://avatars.githubusercontent.com/u/4316564?v=4)](https://github.com/nexxai "nexxai (6 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/nexxai-laravel-gallery/health.svg)

```
[![Health](https://phpackages.com/badges/nexxai-laravel-gallery/health.svg)](https://phpackages.com/packages/nexxai-laravel-gallery)
```

###  Alternatives

[illuminate/filesystem

The Illuminate Filesystem package.

15263.8M3.1k](/packages/illuminate-filesystem)[innoge/laravel-rclone

A sleek PHP wrapper around rclone with Laravel-style fluent API syntax

175.9k](/packages/innoge-laravel-rclone)

PHPackages © 2026

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