PHPackages                             impressiveweb/yandex-disk-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. impressiveweb/yandex-disk-flysystem

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

impressiveweb/yandex-disk-flysystem
===================================

Flysystem adapter for Yandex Disk API

1.0.4(2y ago)019↓100%MITPHPPHP ^8.1

Since Apr 14Pushed 2y ago1 watchersCompare

[ Source](https://github.com/pavel-macovschi/yandex-disk-flysystem)[ Packagist](https://packagist.org/packages/impressiveweb/yandex-disk-flysystem)[ Docs](https://github.com/pavel-macovschi/yandex-disk-flysystem)[ RSS](/packages/impressiveweb-yandex-disk-flysystem/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (6)Used By (0)

Flysystem adapter for the Yandex Disk API
=========================================

[](#flysystem-adapter-for-the-yandex-disk-api)

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

[](#installation)

### Composer package installation:

[](#composer-package-installation)

```
composer require impressiveweb/yandex-disk-flysystem
```

Adapter creation and usage.
---------------------------

[](#adapter-creation-and-usage)

```
use ImpressiveWeb\YandexDisk\Client;
use League\Flysystem\Filesystem;
use ImpressiveWeb\Flysystem\YandexDiskAdapter;
use League\Flysystem\StorageAttributes;

// 1. Create a new client.
$client = new Client($accessToken);

// 2. Create an adapter.
$adapter = new YandexDiskAdapter($client);

// 3. Create a filesystem.
$filesystem = new Filesystem($adapter);

// Get a list of directories in the root of your Application or Disk.
$items = $filesystem
    ->listContents('/')
    ->filter(fn(StorageAttributes $attributes) => $attributes->isDir())
    ->map(fn(StorageAttributes $attributes) => $attributes->path())
    ->toArray()
;

// Get a list of files in a root of your Application or Disk.
$items = $filesystem
    ->listContents('/')
    ->filter(fn(StorageAttributes $attributes) => $attributes->isFile())
    ->map(fn(StorageAttributes $attributes) => $attributes->path())
    ->toArray()
;
```

Other methods can be explored here:
---------------------------------------------------------------------------------------------------

[](#other-methods-can-be-explored-here--httpsflysystemthephpleaguecomdocsusagefilesystem-api)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

763d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/999769c635c3ed1d860d33d568f45f6fcfb9476d0943b298dadc742380296c91?d=identicon)[pavel-macovschi](/maintainers/pavel-macovschi)

---

Top Contributors

[![pavel-macovschi](https://avatars.githubusercontent.com/u/68183611?v=4)](https://github.com/pavel-macovschi "pavel-macovschi (12 commits)")

---

Tags

filesystemFlysystemflysystem-adapterimpressivewebyandex disk flysystem adaptercloud filesystem

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/impressiveweb-yandex-disk-flysystem/health.svg)

```
[![Health](https://phpackages.com/badges/impressiveweb-yandex-disk-flysystem/health.svg)](https://phpackages.com/packages/impressiveweb-yandex-disk-flysystem)
```

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[league/flysystem-local

Local filesystem adapter for Flysystem.

225231.8M39](/packages/league-flysystem-local)[oneup/flysystem-bundle

Integrates Flysystem filesystem abstraction library to your Symfony project.

64422.9M66](/packages/oneup-flysystem-bundle)[league/flysystem-bundle

Symfony bundle integrating Flysystem into Symfony applications

40129.5M87](/packages/league-flysystem-bundle)[league/flysystem-sftp-v3

SFTP filesystem adapter for Flysystem.

6129.6M91](/packages/league-flysystem-sftp-v3)[league/flysystem-memory

In-memory filesystem adapter for Flysystem.

8533.6M194](/packages/league-flysystem-memory)

PHPackages © 2026

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