PHPackages                             codex/filesystems - 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. codex/filesystems

ActiveCodex-addon

codex/filesystems
=================

Codex Addon - Adds a collection of common filesystem adapters. These can be used by your projects.

0335PHP

Since Apr 27Pushed 7y ago1 watchersCompare

[ Source](https://github.com/codex-project/filesystems)[ Packagist](https://packagist.org/packages/codex/filesystems)[ RSS](/packages/codex-filesystems/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

   title Filesystems   subtitle Addons  Filesystems Addon
=================

[](#filesystems-addon)

Adds a collection of common filesystem adapters. These can be used by your projects.

### Installation

[](#installation)

```
composer require codex/filesystems
php artisan codex:addons:enable codex/filesystems
```

### Configuration

[](#configuration)

**\[project\]/config.php**

```
[
    // ...
    'disk' => 'my-dropbox-project',
    // ...
];
```

**config/filesystems.php**

```
[
    'my-webdav-project' => [
        'driver'   => 'webdav',
        'root'     => 'test-dav-project',
        'baseUri'  => env('STACK_URI'),
        'proxy'    => env('STACK_PROXY'),
        'userName' => env('STACK_USERNAME'),
        'password' => env('STACK_PASSWORD'),
        'prefix'   => env('STACK_PREFIX', ''),
    ],

    'my-google-project' => [
        'driver'    => 'google-cloud',
        'projectId' => '',
        'bucket'    => '',
    ],

    'my-dropbox-project' => [
        'driver' => 'dropbox',
        'prefix' => env('DROPBOX_PREFIX', ''),
        'token'  => env('DROPBOX_TOKEN'),
    ],

    'my-zip-project' => [
        'driver' => 'zip',
        'path'   => resource_path('docs/test-zip-project/test-zip-project.zip'),
    ],

    'my-s3-project' => [
        'driver' => 's3',
        'key'    => env('AWS_ACCESS_KEY_ID'),
        'secret' => env('AWS_SECRET_ACCESS_KEY'),
        'region' => env('AWS_DEFAULT_REGION'),
        'bucket' => env('AWS_BUCKET'),
        'url'    => env('AWS_URL'),
    ],

    'my-sftp-project' => [
        'driver'        => 'sftp',
        'host'          => env('SFTP_HOST'),
        'port'          => env('SFTP_PORT'),
        'username'      => env('SFTP_USERNAME'),
        'password'      => env('SFTP_PASSWORD'),
        'privateKey'    => env('SFTP_PRIVATEKEY'),
        'root'          => env('SFTP_ROOT'),
        'timeout'       => 10,
        'directoryPerm' => 0755,
    ],

    'my-rackspace-project' => [
        'driver'   => 'rackspace',
        'url'      => env('RACKSPACE_URL'),
        'secret' => [
            'username' => env('RACKSPACE_USERNAME'),
            'apiKey'   => env('RACKSPACE_APIKEY'),
        ],
        'region'   => env('RACKSPACE_REGION'),
        'options'  => [],
    ],
]
```

Copyright/License
-----------------

[](#copyrightlicense)

Copyright 2019 [Robin Radic](https://github.com/RobinRadic) - [MIT Licensed](LICENSE.md)

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/303828383a9c2bf382436a61f4471425428b28c095c6df9a9714444cbc163538?d=identicon)[radic](/maintainers/radic)

### Embed Badge

![Health badge](/badges/codex-filesystems/health.svg)

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

PHPackages © 2026

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