Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ This simple command-line application demonstrates how to invoke Google Cloud Sto
bucket-acl Manage the ACL for Cloud Storage buckets.
bucket-default-acl Manage the default ACL for Cloud Storage buckets.
bucket-labels Manage Cloud Storage bucket labels
bucket-lock Manage Cloud Storage retention policies and holds
buckets Manage Cloud Storage buckets
encryption Upload and download Cloud Storage objects with encryption
object-acl Manage the ACL for Cloud Storage objects
Expand Down
15 changes: 13 additions & 2 deletions storage/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require": {
"google/cloud-storage": "^1.5.2",
"google/cloud-storage": "^1.9.0",
"paragonie/random_compat": "^2.0",
"symfony/console": " ^3.0"
},
Expand All @@ -18,13 +18,14 @@
"src/delete_bucket_default_acl.php",
"src/delete_object.php",
"src/delete_object_acl.php",
"src/disable_default_event_based_hold.php",
"src/disable_requester_pays.php",
"src/download_encrypted_object.php",
"src/download_file_requester_pays.php",
"src/download_object.php",
"src/enable_default_event_based_hold.php",
"src/enable_default_kms_key.php",
"src/enable_requester_pays.php",
"src/object_metadata.php",
"src/generate_encryption_key.php",
"src/get_bucket_acl.php",
"src/get_bucket_acl_for_entity.php",
Expand All @@ -34,14 +35,24 @@
"src/get_object_acl.php",
"src/get_object_acl_for_entity.php",
"src/get_requester_pays_status.php",
"src/get_retention_policy.php",
"src/get_default_event_based_hold.php",
"src/list_buckets.php",
"src/list_objects.php",
"src/list_objects_with_prefix.php",
"src/lock_retention_policy.php",
"src/make_public.php",
"src/move_object.php",
"src/object_metadata.php",
"src/release_event_based_hold.php",
"src/release_temporary_hold.php",
"src/remove_bucket_iam_member.php",
"src/remove_bucket_label.php",
"src/remove_retention_policy.php",
"src/rotate_encryption_key.php",
"src/set_event_based_hold.php",
"src/set_retention_policy.php",
"src/set_temporary_hold.php",
"src/upload_encrypted_object.php",
"src/upload_object.php",
"src/upload_with_kms_key.php",
Expand Down
Loading