| Package Data | |
|---|---|
| Maintainer Username: | lemesdaniel |
| Maintainer Contact: | dlemes@gmail.com (Daniel Lemes) |
| Package Create Date: | 2016-08-12 |
| Package Last Update: | 2016-09-12 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-19 15:09:31 |
| Package Statistics | |
|---|---|
| Total Downloads: | 154 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 1 |
Using Composer:
composer require lemesdaniel/s3forme
In your config/flysystem.php file set the default driver to 's3forme' and add the connection configuration like so:
'default' => 's3forme',
'cloud' => 's3forme',
'disks' => [
...
's3forme' => [
'key' => 'you-key',
'secret' => 'you-secret-key',
'visibility' => 'public-read', // or private
'bucket' => 'image', //name your bucket
'endpoint' => 'http://rest.s3for.me',
],
...
]
In your config/app.php file add the following provider to your service providers array:
'providers' => [
...
Lemesdaniel\S3forme\Providers\S3formeFilesystemServiceProvider::class,
...
]