Tagged Questions
11
votes
6answers
957 views
How to do deployment for php application
I am currently developing a php-application for a charity organization and I am now in the stage of defining the deployment practices.
Our application is using both Zend Framework and Doctrine. The ...
4
votes
3answers
517 views
How do you handle library dependencies during deployment using PHP?
this is a question on PHP mainly. I was wondering: How do you make sure that all necessary libaries are packaged with your application when you do a deployment to (production) servers?
A more ...
1
vote
1answer
64 views
Manging project agnostic code libraries without creating dependencies
I'm curious to know how fellow developers manage project agnostic code/libraries?
For example, given these two functions:
function array_exclude_keys(Array $array, Array $keys){
foreach($keys as ...