Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my Codeigniter controllers I want to link to things like AWS SDK, Facebook SDK, etc.

Currently I'm just setting it up with requre_once('./path_to_sdk/....');

My hunch is there's a more correct way of doing this, for instance I know there is a "third_party" folder in CodeIgniter under /application.

Could anyone offer some suggestions or guidance on best practices in this situation?

share|improve this question

2 Answers

up vote 2 down vote accepted

The correct way is to follow PSR-0 from the PHP Framework Interop Group.

This suggests that your directory should be structured in a /path/to/app/lib/vendor/class/ format. So each separate vendor should have its own tree in your lib directory. That means you should have ../lib/CodeIgnitor, ../lib/AWS/, '../lib/Facebook/, etc. Each vendor should also be adhering to PSR-0 for their class names.

Doing things this way assures you can clone a vendor's directory at upgrade time without overwriting another vendor's files.

share|improve this answer

I put all of my third party SDKs and libraries in the libraries directory.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.