Package Data | |
---|---|
Maintainer Username: | naturalweb |
Package Create Date: | 2014-10-29 |
Package Last Update: | 2014-10-30 |
Language: | PHP |
License: | BSD-3-Clause |
Last Refreshed: | 2024-11-19 03:08:58 |
Package Statistics | |
---|---|
Total Downloads: | 58 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
In the require
key of composer.json
file add the following
"naturalweb/nwlaravel-filestorage": "~0.1"
Run the Composer update comand
$ composer update
In your config/app.php
add 'NwLaravel\FileStorage\FileStorageServiceProvider'
to the end of the $providers
array
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'NwLaravel\FileStorage\FileStorageServiceProvider',
),
At the end of config/app.php
add 'FileStorage' => 'NwLaravel\FileStorage\FileStorageFacade'
to the $aliases
array
'aliases' => array(
'App' => 'Illuminate\Support\Facades\App',
'Artisan' => 'Illuminate\Support\Facades\Artisan',
...
'FileStorage' => 'NwLaravel\FileStorageFacade',
),
Publish config using artisan CLI.
php artisan config:publish naturalweb/nwlaravel-filestorage
The configuration to app/config/packages/naturalweb/nwlaravel-filestorage/config/filestorage.php
. This file will look somewhat like:
<?php
/*
|--------------------------------------------------------------------------
| Configuration FileStorage
|--------------------------------------------------------------------------
*/
return array(
'default' => 'filesystem',
'path_tmp' => sys_get_temp_dir(),
'storages' => array(
'filesystem' => array(
'root' => public_path('/uploads'),
'host' => url('uploads'),
),
's3' => array(
'root' => '/bucket',
'access' => 'your-access',
'secret' => 'your-secret',
),
'dropbox' => array(
'root' => '/folder',
'token' => 'your-token',
'app' => 'your-app',
),
),
);
$name = 'name-file.txt';
$source = '/source/path/file.txt';
$folder = '/folder/destino';
$override = true;
$bool = FileStorage::save($name, $source, $folder, $override);