A FuelPHP package wrapping around Donovan Schönknecht's Amazon S3 PHP class.
Copy config/s3.php into your app/config/ directory and set your Access & Secret Access keys and default ACL level.
You can now call any of the class methods on the S3 object. For example:
S3::listBuckets();When setting a custom ACL level, set it as a String, not a Constant as described the class methods. For example:
S3::putObject($file, $bucket, $name, 'ACL_PUBLIC_READ');