kuusamo/plugin-aws

Kuusamo 的 Amazon Web Services (AWS) 插件

2.0.1 2023-05-03 18:24 UTC

This package is auto-updated.

Last update: 2024-09-03 21:06:37 UTC


README

Latest Stable Version Total Downloads License Build Status

此插件将 Amazon Web Services (AWS) 与 Kuusamo 集成。

安装

使用 Composer 将其安装到您的项目中。

composer require kuusamo/plugin-aws

使用

在您的项目的 index.php 中安装它。

$s3 = Kuusamo\Plugin\Aws\Storage\S3StorageFactory::create(
    'aws-key',
    'aws-secret',
    'region',
    'bucket-name'
);

Kuusamo\Vle\Service\Storage\StorageFactory::setProvider($s3);

开发

运行测试

ant