techjini / aws_s3
dev-master
2018-06-05 12:50 UTC
Requires
- php: >=5.5.9
- aws/aws-sdk-php: ^3.58
- aws/aws-sdk-php-symfony: ^2.0
- calcinai/php-imagick: ^0.1.2
- doctrine/doctrine-bundle: ^1.6
- doctrine/orm: ^2.5
- incenteev/composer-parameter-handler: ^2.0
- sensio/distribution-bundle: ^5.0.19
- sensio/framework-extra-bundle: ^5.0.0
- symfony/monolog-bundle: ^3.1.0
- symfony/polyfill-apcu: ^1.0
- symfony/swiftmailer-bundle: ^2.6.4
- symfony/symfony: 3.4.*
- twig/twig: ^1.0||^2.0
Requires (Dev)
- sensio/generator-bundle: ^3.0
- symfony/phpunit-bridge: ^3.0
This package is not auto-updated.
Last update: 2025-04-03 18:23:00 UTC
README
A Symfony project created on May 30, 2018, 12:00 pm.
-
In the config.yml add the following.
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
-
Add the following in AppKernel.php in bundles
new \Aws\Symfony\AwsBundle
-
Now You can use the upload functionality in your project directly
$s = techjini\aws_s3::S3UploadIMG($bucketName, $file, $imgName);
$bucketName : the name of the bucket $file : the file $imgName: the file name