PHPackages                             synapsestudios/synapse-files - 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. synapsestudios/synapse-files

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

synapsestudios/synapse-files
============================

Filesystem services, controllers, etc

v1.1.0(10y ago)13.0k[1 issues](https://github.com/synapsestudios/synapse-files/issues)MITPHP

Since Mar 13Pushed 10y ago24 watchersCompare

[ Source](https://github.com/synapsestudios/synapse-files)[ Packagist](https://packagist.org/packages/synapsestudios/synapse-files)[ RSS](/packages/synapsestudios-synapse-files/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (6)Versions (10)Used By (0)

Synapse-Files
=============

[](#synapse-files)

Installation: Add to composer.json and composer update!

Setup
-----

[](#setup)

To use: register the following services in your application:

```
    $app->register(new AwsServiceProvider());
    $app->register(new AwsCredentialsServiceProvider());
    $app->register(new FileServiceProvider());

```

Create a file.php config file with the following contents:

```
return [
    'filesystem' => 'local',
    'base_path'  => realpath(__DIR__.'/..').'/files',
];

```

For production, file config should be:

```
