PHPackages                             roblesterjr04/disky - 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. roblesterjr04/disky

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

roblesterjr04/disky
===================

Disky is a simple package of plugins for Laravel Flysystem. But right now it just allows copying from one disk to another.

v0.1.1(8y ago)0181MITPHPPHP ~5.6|~7.0

Since Sep 19Pushed 8y ago1 watchersCompare

[ Source](https://github.com/roblesterjr04/disky)[ Packagist](https://packagist.org/packages/roblesterjr04/disky)[ Docs](https://github.com/roblesterjr04/disky)[ RSS](/packages/roblesterjr04-disky/feed)WikiDiscussions master Synced 2d ago

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

Laravel Disky
=============

[](#laravel-disky)

[![Latest Version on Packagist](https://camo.githubusercontent.com/240f853e7c62d3fcb1cb699586cebd7be8ef8920a744b0b98d9cb6be7be20faa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726f626c65737465726a7230342f6469736b792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/roblesterjr04/disky)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/6f8b4bf10cea88b81e7f609eaf05cb61a8013a3099db47961749c12a876fd60e/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f726f626c65737465726a7230342f6469736b792f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/roblesterjr04/disky)[![Coverage Status](https://camo.githubusercontent.com/403bb8050e79f5f125f88257d24a126f9efff727ff8c98675ee0a5c82e01d07c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f726f626c65737465726a7230342f6469736b792e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/roblesterjr04/disky/code-structure)[![Quality Score](https://camo.githubusercontent.com/aab542c2e8ba585cf1d310056e211e0189c35533db6f2d00b1532c67393c89e7/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f726f626c65737465726a7230342f6469736b792e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/roblesterjr04/disky)[![Total Downloads](https://camo.githubusercontent.com/c45fe3b36fb5d0a3650c0c9a1e216f4c621021bb37b11113f17cf396d3e73f94/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726f626c65737465726a7230342f6469736b792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/roblesterjr04/disky)

Disky gives you an easy way to copy a file from one disk to another in one line of code.

Install
-------

[](#install)

Via Composer

```
$ composer require roblesterjr04/disky
```

Add Service Provider to `config/app.php`

```
roblesterjr04\disky\DiskyServiceProvider::class,
```

Usage
-----

[](#usage)

```
Storage::copyToDisk('path/to/file', 's3'); // Same as copying from disk('local');

Storage::disk('s3')->copyToDisk('path/to/file', 'ftp');

Storage::disk('ftp')->copyToDisk('path/to/file', 'local');

// Use the same logic to copy a directory

Storage::disk('ftp')->copyToDisk('path/to/directory', 's3');
```

### Multiple Files are supported!

[](#multiple-files-are-supported)

```
Storage::copyToDisk(['path/to/file1','path/to/file2'], 's3');

// You can copy to multiple disks!
Storage::copyToDisk(['path/to/file1','path/to/file2'], ['s3','ftp']);

// You can specify one or more folder destinations on the destination drive(s)
Storage::copyToDisk('path/to/file', 's3', 'destination/path');

Storage::copyToDisk('path/to/file', 'ftp', ['destination/path1', 'destination/path2']);
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE\_OF\_CONDUCT](CODE_OF_CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email :author\_email instead of using the issue tracker.

Credits
-------

[](#credits)

- [Rob Lester](https://github.com/roblesterjr04)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

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

Every ~0 days

Total

2

Last Release

3158d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/37a376a6bb4b688512897fd2afdef71c99a37529f1b3002d43d699843eb9cbc7?d=identicon)[roblesterjr04](/maintainers/roblesterjr04)

---

Top Contributors

[![roblesterjr04](https://avatars.githubusercontent.com/u/6423115?v=4)](https://github.com/roblesterjr04 "roblesterjr04 (9 commits)")

---

Tags

Flysystemlaravelcopystoragediskroblesterjr04Disky

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/roblesterjr04-disky/health.svg)

```
[![Health](https://phpackages.com/badges/roblesterjr04-disky/health.svg)](https://phpackages.com/packages/roblesterjr04-disky)
```

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

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

OVH Object Storage driver for laravel

40153.5k](/packages/sausin-laravel-ovh)[zing/laravel-flysystem-obs

Flysystem Adapter for OBS

1211.2k](/packages/zing-laravel-flysystem-obs)[vormkracht10/flysystem-uploadcare

Flysystem driver for Uploadcare for Laravel.

1834.2k](/packages/vormkracht10-flysystem-uploadcare)

PHPackages © 2026

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