2017 © Pedro Peláez
 

library aws_s3

image

techjini/aws_s3

  • Tuesday, June 5, 2018
  • by reevan.techjini
  • Repository
  • 0 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

AWS_S3

A Symfony project created on May 30, 2018, 12:00 pm., (*1)

  1. In the config.yml add the following., (*2)

    aws: version: latest region: us-east-1 credentials: key: "Your KEY " secret: "Your SECRET Key" DynamoDb: region: ap-southeast-1 S3: version: '2006-03-01' region: us-east-1, (*3)

  2. Add the following in AppKernel.php in bundles, (*4)

    new \Aws\Symfony\AwsBundle, (*5)

  3. Now You can use the upload functionality in your project directly, (*6)

    $s = techjini\aws_s3::S3UploadIMG($bucketName, $file, $imgName);, (*7)

    $bucketName : the name of the bucket $file : the file $imgName: the file name, (*8)

The Versions