I want to know whether phpExcel library can create and upload the file directly to s3 without creating the temporary files, or in the case of large files a multipart upload is possible. Currently with the reference from enter link description here I am using the code
$writer->save("s3://" . $exportBucket . "/" . $keyname);
I want to write directly to s3 because after writing 2000 rows with 50 column's memory exhaust error is getting, Also I want to continuously generate more than 15 files same time.