kuusamo / plugin-aws
Amazon Web Services plugin for Kuusamo
2.0.1
2023-05-03 18:24 UTC
Requires
- aws/aws-sdk-php: 3.*
- kuusamo/core: *
Requires (Dev)
- phpunit/phpunit: 9.*
- squizlabs/php_codesniffer: 3.*
This package is auto-updated.
Last update: 2024-11-03 21:33:13 UTC
README
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