2017 © Pedro PelĂĄez
 

library plugin-s3

carew plugin to upload the content on AWS S3

image

carew/plugin-s3

carew plugin to upload the content on AWS S3

  • Saturday, December 6, 2014
  • by lyrixx
  • Repository
  • 1 Watchers
  • 1 Stars
  • 98 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

S3 Extension

Uploads generated content by carew to amazon S3., (*1)

Installation

composer require carew/plugin-s3

Configuration

Add the following configuration to your config.yml file:, (*2)

engine:
    extensions:
        - S3Extension

aws:
    bucket: <BUCKET_NAME>
    key: <KEY>
    secret: <SECRET>

It's recommended to use an IAM with the following configuration:, (*3)

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Stmt1407400884000",
      "Effect": "Allow",
      "Action": [
        "s3:*"
      ],
      "Resource": [
        "arn:aws:s3:::<BUCKET_NAME>",
        "arn:aws:s3:::<BUCKET_NAME>/*"
      ]
    }
  ]
}

Usage

bin/carew deploy

The Versions

06/12 2014

dev-master

9999999-dev

carew plugin to upload the content on AWS S3

  Sources   Download

MIT

The Requires

 

06/12 2014

v1.0.0

1.0.0.0

carew plugin to upload the content on AWS S3

  Sources   Download

MIT

The Requires