zhuxiaoqiao/laravel-baidu-bos

A Flysystem Baidu Bos Wrapper for Laravel

v1.0.3 2015-05-21 03:54 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:17:27 UTC


README

A Flysystem Baidu Bos Wrapper for Laravel

Author Software License Packagist Version Total Downloads

Installation

composer require "zhuxiaoqiao/laravel-baidu-bos": "~1.0"

or add the following line to your project's composer.json:

"require": {
    "zhuxiaoqiao/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:

'Zhuxiaoqiao\LaravelBaiduBos\BaiduBosFilesystemServiceProvider',

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.