Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Zend Framework 2.0 leave out the amazon s3 library functions that were included in 1.12?

I was unable to find the equivalent of this

http://framework.zend.com/manual/1.12/en/zend.service.amazon.s3.html

In the 2.0 version documentation. I also noticed that the 2.0 minimal version is 2.5MB while the 1.12 minimal version is 8.7MB and the full 1.12 version is ~30MB.

like image 335
user784637 Avatar asked Nov 12 '22 21:11

user784637


1 Answers

ZF2 doesn't provides a built-in library for S3 or any other AWS services by default. Zend\Service components has been removed from repository as of July 2012 and some of them still maintained under individual repositories.

But the good news is Amazon announced their own AWS-SDK module for ZF2 on March 2013. Also it has a github link. Currently its in very early stages and seems like a ZF2 friendly wrapper for amazon's official PHP SDK, it's promising.

For more detailed information about this situation, read the RFC here.

like image 186
edigu Avatar answered Nov 15 '22 12:11

edigu