liou2021 / gcs
storage of gcp for laravel 9
v1.2.2
2022-08-24 13:24 UTC
Requires
- php: ^8.1
- google/cloud: ^0.188.0
- guzzlehttp/guzzle: ^7.2
- laravel/framework: ^9.19
README
- this package is helpful laravel 9 using gcp storage
edit your composer.json
"repositories": { "liou2021": { "type": "vcs", "url": "https://github.com/LIOU2021/gcs" } }
run this command in your laravel project
composer require liou2021/gcs
publish config
php artisan vendor:publish --provider="Liou2021\Gcs\GCSServiceProvider"
edit your config(config/gcs.php)
return[ 'bucket'=>'your bucket name', 'key'=>'your gcp key' ];
common
return \GCS::allFiles(); return \GCS::Files('test/'); return \GCS::put($request->file, $path);