kuusamo/plugin-aws

Amazon Web Services plugin for Kuusamo

2.0.1 2023-05-03 18:24 UTC

This package is auto-updated.

Last update: 2024-04-03 20:16:23 UTC


README

Latest Stable Version Total Downloads License Build Status

Thi plugin integrates Amazon Web Services (AWS) with Kuusamo.

Installation

Install into your project using Composer.

composer require kuusamo/plugin-aws

Usage

Install it in index.php of your project.

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

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

Development

Run the tests

ant