We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0bf4d commit 44463fcCopy full SHA for 44463fc
README.md
@@ -228,6 +228,33 @@ return [
228
];
229
```
230
231
+## Google Cloud filesystem
232
+
233
+Run
234
235
+```bash
236
+$ composer require "superbalist/flysystem-google-storage": "^5.0"
237
+```
238
239
+and configure application `components` as follows
240
241
+```php
242
+return [
243
+ //...
244
+ 'components' => [
245
246
+ 'googleCloudFs' => [
247
+ 'class' => 'creocoder\flysystem\GoogleCloudFilesystem',
248
+ 'projectId' => 'GOOGLE_PROJECT_ID',
249
+ 'bucket' => 'GOOGLE_BUCKET',
250
+ 'keyFilePath' => 'GOOGLE_KEY_FILE_PATH',
251
+ ],
252
253
+];
254
255
256
+> Note: Credential configuration is read from the *keyFile*.
257
258
### GridFS filesystem
259
260
Either run
0 commit comments