0
votes
2answers
27 views

Is there risk of unavailable sources in composer-based project?

When putting together a PHP project with composer, on installation / deployment, composer would fetch the dependencies usually from their original sources. This could lead to problems when deploying, ...
0
votes
1answer
101 views

Large project with Composer dependencies is constantly needing json file modification

I have an issue/workflow in a large project with quite a number of composer packages where every so often my json file needs to be updated with a new version for a package or composer will not update. ...
5
votes
2answers
83 views

Dependency Isolation and Declaration in PHP

What's the best way to achieve complete dependency declaration and isolation in a PHP web app? I already know about Composer, but that's only the declaration part and I don't think it goes far enough. ...
0
votes
0answers
32 views

View file dependency in eclipse for PHP Project

Is it possible to view PHP project file dependency on eclipse? The dependency come from include, class inheritance, js source, etc.
1
vote
3answers
186 views

Controlling Exact Folder/Directory where Packages are Written by Composer for PHP

The Background I'm trying to use Composer to manage dependencies for WordPress plugins. I've built several PHP libraries (RESTian & Sidecar) I want to include in subdirectories for each of ...
0
votes
0answers
105 views

Generating PHP dependency information from source files

I've got an old PHP website I know little about the structure of, and I'd like to generate a dependency graph to help me learn more about it. PDepend can handle some of it, but a lot of the site was ...
2
votes
1answer
569 views

Can I synchronize or mirror dependencies from packagist.org with my own Composer Satis installation?

We have our own Satis repository, we can store there our own dependencies. This works fine. But if a developer uses a package that is not within in our own repository, then Composer will fetch it ...
1
vote
1answer
414 views

Should dependencies be deleted from disk automatically after install/update with Composer?

After removing a dependency from composer.json and running install or update, should I expect the files to be removed automatically from disk? I had to remove them manually, not sure if I am supposed ...
1
vote
2answers
228 views

PHPUnit Dependency Injection Into A TestCase

I was wondering whether it's possible to inject dependencies into classes derived from PHPUnit_Framework_TestCase via e.g. some context test suite - in a manner that PHPUnit could handle irregardless ...
8
votes
1answer
2k views

Phing and Composer, which way around?

I want to use both Phing and Composer for my applications. Phing as the build system and Composer to manage dependencies. But which way around should they be used? Currently we're installing Phing ...
0
votes
2answers
464 views

composer: How to find the exact version of a repository?

Suppose I'm writting a library A, that depends on another library, monolog for instance. I want to install the latest version of monolog, so I just put this inside composer.json: { "require": { ...
1
vote
1answer
2k views

composer.lock: how does it work?

I'm trying to understand this part: http://getcomposer.org/doc/02-libraries.md#lock-file "this lock file will not have any effect on other projects that depend on it. It only has an effect on the ...
1
vote
1answer
104 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 ...
12
votes
6answers
2k 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 ...
6
votes
3answers
698 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 ...