pieceofcake2/aws
最新稳定版本:v1.0.0
Composer 安装命令:
composer require pieceofcake2/aws
包简介
关键字:
README 文档
README
Installation
composer require pieceofcake2/aws
Config
Config/core.php
Configure::write('Session', [ 'defaults' => 'php', 'handler' => [ 'engine' => 'Aws.DynamoDbSession', 'table_name' => 'DYNAMODB_TABLE_NAME' ], 'timeout' => 1440, 'ini' => [ 'session.cookie_lifetime' => 0, 'session.gc_maxlifetime' => 2580000, 'session.gc_probability' => 1, 'session.gc_divisor' => 100, ], ]);
/* * Aws */ Configure::write('Aws', [ 'region' => 'ap-northeast-1', 'version' => 'latest', ]);
Config/email.php
class EmailConfig { /** * Default email profile values. * * @var array */ public $default = [ 'transport' => 'Aws.AmazonSesApi', 'from' => 'example@example.com', 'charset' => 'utf-8', 'headerCharset' => 'utf-8', ]; }
S3 StreamWrapper
$client = new Aws\S3\S3Client(Configure::read('Aws')); $client->registerStreamWrapperV2();
or
CakePlugin::load('Aws', [ 'bootstrap' => true, ]);
统计信息
- 总下载量: 143
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-10-05