This is an automated email from the ASF dual-hosted git repository.

suyanhanx pushed a commit to branch typo-fix
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git

commit 0f9738e27d58b11055c0f8a7aaf58323211e3eb7
Author: suyanhanx <[email protected]>
AuthorDate: Fri Dec 22 11:38:12 2023 +0800

    chore(bindings/php): bump ext-php-rs to support latest php
    
    Signed-off-by: suyanhanx <[email protected]>
---
 Cargo.lock                   | 4 ++--
 bindings/php/Cargo.toml      | 2 +-
 website/docs/services/s3.mdx | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 0060321d2..3836e3a76 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2480,9 +2480,9 @@ dependencies = [
 
 [[package]]
 name = "ext-php-rs"
-version = "0.10.4"
+version = "0.11.2"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "622d16bebb4742a5d9424121d16149dd147a235e10f68c57c812d8a4ca51360e"
+checksum = "761ad6d98287c4014cfd15757893a9104d24ed072c9eb948c14433f6fbac9882"
 dependencies = [
  "anyhow",
  "bindgen 0.68.1",
diff --git a/bindings/php/Cargo.toml b/bindings/php/Cargo.toml
index 8cb0de743..d15d7d649 100644
--- a/bindings/php/Cargo.toml
+++ b/bindings/php/Cargo.toml
@@ -31,5 +31,5 @@ rust-version.workspace = true
 crate-type = ["cdylib"]
 
 [dependencies]
-ext-php-rs = "0.10.1"
+ext-php-rs = "0.11.2"
 opendal.workspace = true
diff --git a/website/docs/services/s3.mdx b/website/docs/services/s3.mdx
index 90562f6cd..f2915a5be 100644
--- a/website/docs/services/s3.mdx
+++ b/website/docs/services/s3.mdx
@@ -48,7 +48,7 @@ async fn main() -> Result<()> {
 import { Operator } from "opendal";
 
 async function main() {
-  const op = new Operator("azblob", {
+  const op = new Operator("s3", {
     root: "/path/to/dir",
     bucket: "test",
     region: "us-east-1",
@@ -65,7 +65,7 @@ async function main() {
 ```python
 import opendal
 
-op = opendal.Operator("azblob",
+op = opendal.Operator("s3",
     root="/path/to/dir",
     bucket="test",
     region="us-east-1",

Reply via email to