otobank / gcputils
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 22
Forks: 0
Open Issues: 0
pkg:composer/otobank/gcputils
Suggests
- google/appengine-php-sdk: Google App Engine PHP SDK
This package is auto-updated.
Last update: 2024-11-18 21:47:28 UTC
README
for Google Cloud Platform
Installation
composer require otobank/gcputils
Usage
Cloud Storage
Generate signed URL to provide query-string auth'n to a resource
<?php use GCPUtils\CloudStorage; $storage = new CloudStorage(); $signedUrl = $storage->generateSignedUrl('/bucket/path/to/file.txt', time() + 86400);