From 9352e1f993d55233751a5b503f0ed9b01005ed6a Mon Sep 17 00:00:00 2001 From: sters Date: Fri, 16 Dec 2016 04:56:03 +0900 Subject: [PATCH] fixed README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 89671db..4852131 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ one Datasrouce has one S3 Bucket connection. ``` 'Datasource' => [ 'my_s3_connection' => [ - 'class' => 'CakeS3\Datasource\Connection', + 'className' => 'CakeS3\Datasource\Connection', 'key' => 'put your s3 access key', 'secret' => 'put your s3 access secret', 'bucketName' => 'put your bucket name', @@ -35,6 +35,7 @@ one Datasrouce has one S3 Bucket connection. ], ``` + Setup new table using s3 connection. `$_connectionName` is your wrote connection name in `config/app.php` Datasource.