hinet / laravel-baidu-bos
A Flysystem Baidu Bos Wrapper for Laravel
dev-master / 1.0.x-dev
2021-04-14 10:33 UTC
Requires
- php: >=5.4.0
- hinet/flysystem-baidu-bos: ~1.0
This package is not auto-updated.
Last update: 2024-11-08 12:22:57 UTC
README
Laravel百度云文件存储引擎
Installation
composer require "hinet/laravel-baidu-bos": "~1.0"
or add the following line to your project's composer.json
:
"require": { "hinet/laravel-baidu-bos": "~1.0" }
then
composer update
After completion of the above, add the following line to the section providers
of config/app.php
:
Hinet\Baidu\BaiduServiceProvider::class,
Configuration
Edit config\filesystems.php
:
Add bos disk
'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path().'/app', ], 's3' => [ 'driver' => 's3', 'key' => 'your-key', 'secret' => 'your-secret', 'region' => 'your-region', 'bucket' => 'your-bucket', ], 'rackspace' => [ 'driver' => 'rackspace', 'username' => 'your-username', 'key' => 'your-key', 'container' => 'your-container', 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', 'region' => 'IAD', 'url_type' => 'publicURL' ], 'bos' => [ 'driver' => 'bos', 'bucket' => 'your-bucket-name', 'options' => [ 'credentials' => [ 'ak' => 'your-ak', 'sk' => 'your-sk', ], 'endpoint' => 'http://bj.bcebos.com', ] ], ],
Usage
$exists = Storage::disk('bos')->exists('path/to/file'); $content = Storage::disk('bos')->get('path/to/file');
Official Documentation
Documentation for laravel framework 'Filesystem/Cloud Storage' can be found on the Laravel website.