Composer is a tool for dependency management in PHP. It allows you to declare your project dependencies and will install them in for you. See http://getcomposer.org
1
vote
1answer
20 views
how to handle bugfix in a phundament composer package
i want to fix a bug in twitter bootstrap composer package used by Phundament3 0.15.0. How can i do this without changing code in the vendor folder?
0
votes
1answer
35 views
How does composer deal with shared dependencies by multiple packages within one project?
As the questions states, if Project A requires x,y & z packages which they all in turn require d1, d2, d3, d4 & d5 packages. Does Composer download d1, d2, d3, d4 & d5 three times for x,y ...
0
votes
1answer
40 views
Refactoring and dependencies issue
I've got a number of SMS providers, each in a separate directory in the file system. The main class inside each provider directory extends abstract class ProviderAbstract.php which is located ...
0
votes
1answer
104 views
How to add FirePHP using composer to Zend Framework 2
I'm trying to add FirePHP to my Zend Framework 2 project using composer, but I get errors.
My OS is a Windows 7.
I tried following ways to make it working:
I added following code to composer.json ...
0
votes
1answer
87 views
composer.phar install older packages
I have a problem with "Composer"
When I use Composer from my notebook with Linux operating system, Composer install older versions of components than those installed.
When I use Composer from my ...
0
votes
3answers
503 views
Setup laravel 4
I'm new to laravel and I'm trying to setup Laravel 4, using (bit outdated) http://net.tutsplus.com/tutorials/php/how-to-setup-laravel-4/
I have setup composer globally. When I run:
$ git clone ...
0
votes
1answer
107 views
Accessing local svn repositories via Composer.json without supplying login credentials in clear text
Included in my composer.json file are packages of 'private' local svn repositories. Each source url includes the svn username and password.
As the projects get deployed on different servers I don't ...
0
votes
2answers
68 views
Own project via composer
I've got some libraries loaded through composer, and I'm wondering if it's possible to add my own library in the /vendor map, and then to have the composer autoloader load it? The structure would be ...
0
votes
3answers
306 views
Laravel 4 IoC Container - Setting Up & Using Providers
I am trying to use http://geotools-php.org/ in Laravel 4 (L4).
I followed the instructions for downloading through Composer (and verified geotools existance in the vendors folder).
I added ...
0
votes
0answers
225 views
After cloning zend framework 2 skeleton application from github.com “php composer.phar self-update” is not working [closed]
After cloning zend skeleton application from github.com. when running php composer.phar self-update giving the following error:
[Composer\Downloader\TransportException]
The ...
4
votes
2answers
864 views
Symfony update from 2.1 to 2.2 composer error
I'm trying to update my project from symfony 2.1 to 2.2 . I try to update it package by package. When I type composer.phar update symfony/symfony, I get the following error:
Problem 1
- Conclusion: ...
0
votes
1answer
328 views
Can't install doctrine/mongodb-odm using Composer
Trying to install doctrine/mongodb-odm via Composer I get this:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be ...
0
votes
1answer
442 views
Composer update results in “symfony/framework-bundle 2.0.7 requires symfony/translator 2.0.7 -> no matching package found.”
The error message is:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
...
0
votes
1answer
85 views
Using Composer to get github repo with Kohana fails: “requested package could not be found”
I would like to use Composer to include the php readability git project. This is my composer.json file:
{
"repositories": [
{
"type": "package",
"package": {
...
0
votes
1answer
62 views
phpunit tries to include directories when given empty suffix
I'm trying to run tests on my new project. The directory layout is as follows:
src/ (project's code here)
test/
EviType/
Main.php
phpunit.xml
composer.json
Phpunit is installed ...
1
vote
1answer
97 views
Composer's autloader can't find app class. Why?
I have the following file structure:
src/Models/Entity.php
vendor/*
index.php
composer.*
Entity.php contains
<?php
namespace Vendor\App\Models;
class Entity {}
index.php contains
<?php
...
0
votes
1answer
56 views
Remove files when downloading a dependency with composer
I am sure I once read it somewhere but I cannot find it anymore anywhere, DAMN!
So basically what I am trying to do is to specify some exclusion criteria in my composer.json file for a certain ...
0
votes
1answer
144 views
composer does not autoload
I followed the composer instructions and installed composer successfully. I want to use tumblr's brand new php api client.
My folder structure:
vendor/
composer.json
composer.lock
myfile.php
...
0
votes
1answer
90 views
Running Composer-installed tasks in Phing
I have a PHP app that is getting its dependencies installed with Composer. Composer puts the binaries in the bin folder. I want to use Phing to execute some tests on my code, but Phing isn't finding ...
1
vote
1answer
382 views
Installing Laravel 4 Powerpack breaks code in SessionServiceProvider?
After I use composer update with L4 powerpack requirement in composer.json, it fetches it with no problems. Then I update providers and aliases arrays in app.php, but when I use HTML::script(...) I ...
0
votes
0answers
116 views
Include multiple composer repository configuration files
I want to break up the composer repository configuration into different files.
I use local and external repositories and I would like to keep their configurations separate.
These files would then ...
0
votes
1answer
199 views
Cannot install package using composer in NetBeans
I'm using symfony2.1 on XAMPP, with NetBeans 7.3 as the IDE. And I want to install friendofsymfony/rest-bundle package by adding these line on require section
"friendsofsymfony/rest-bundle": ...
1
vote
1answer
237 views
unserialize error after emptying cache with Symfony and minimum-stability : dev
I've got an error when I clear manualy the Symfony cache after installing the SonataAdminBundle in Symfony 2.1.8 (but I've the same error with the 2.2 or 2.1)
First, I've installed Symfony :
php ...
0
votes
1answer
146 views
Updating composer after adding a dependency in Laravel 4 gives me error
I get the following error on a fresh Laravel 4 install after adding a new dependency to the composer.json and running composer update. Any ideas?
[RuntimeException]
Source directory ...
3
votes
2answers
95 views
Maintainig very own vendor with composer and git Symfony2 Bundle
I created a vendor lib (Symfony2 Bundle) in git repository. Added composer.json to it.
In multiple projects I use it as a vendor (vcs in composer.json).
Everything works fine unless I want to modify ...
1
vote
1answer
102 views
Is it normal that zendframework/zend-http package requires 49 components?
Here's the composer.json:
{
"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com/"
}
],
"require": {
...
0
votes
1answer
58 views
Zend Framework 2 - Updating Zend causes RuntimeException
I updated my composer.json to get the new version of ZF2.
Unfortunately I get this error:
[RuntimeException]
Failed to clone http://github.com/zendframework/zf2.git via git, https and
http ...
1
vote
2answers
103 views
How to clone repository with Composer without --prefer-source? (using Symfony 2)
Scenario: I am working with Symfony 2.2. In my list of required packages is also one of my github repositories, let's call it "TestLib".
I know that I can define the github url as additional ...
0
votes
1answer
99 views
LMongo package no longer auto loading with Laravel 4 Composer
After my php composer.phar update this morning LMongo is no longer added to my autoload files.
From my composer.json file I'm using:
"navruzm/lmongo": "*",
"navruzm/laravel-mongo-session": "*",
...
0
votes
1answer
180 views
How to use rackspace php-opencloud with Laravel 4
I'm trying to use the php-opencloud library with Laravel 4 (it's my first time with it, I'm a bit intimidated...)
I have added this to my composer.json, tried a composer update, which downloaded the ...
0
votes
1answer
265 views
Composer cannot download files
I am trying to use composer on command line :
php composer.phar update
php composer.phar install
php composer.phar self-update
php composer.phar selfupdate
Whatever I do I always receive the same ...
6
votes
1answer
72 views
Symfony2: How solve two bundles requirements conflicts when using composer?
I'm needing to use two bundles:
dsyph3r/google-geolocation-bundle
mlpz/postmark-bundle
I'm having problems when trying to update composer because they have different requirements about ...
0
votes
0answers
56 views
How do you install FR3D LdapBundle using Composer on Symfony2?
I added, according to the installation instructions, ("fr3d/ldap-bundle": "2.0.*") to my composer.json file. When I run "composer update" I get "The requested package fr3d/ldap-bundle 2.0.* could not ...
3
votes
1answer
192 views
APC opcode cache breaks application
I use composer to install Zend Framework 2 and other libraries. Every time after re-installing an application in the same path, I have to manually clear the APC (version 3.1.13) opcode cache (with PHP ...
2
votes
1answer
95 views
Composer suggested approach for internal packages
Some background first
Our company, a small startup with only four developers, is starting the refactoring of our products into reusable modules to simplify the development process, increase ...
0
votes
2answers
116 views
Where should I place my Monolog custom Handler in my Symfony2 project?
I have created a handler class that derives from AbstractProcessingHandler. I've seen that I can put it in src/MyNamespace/MyBundle/Monolog/, but it worries me a bit because this handler is used in ...
0
votes
3answers
316 views
How to install Symfony2 Bundles with Composer
I'm using Windows and I installed composer from its Windows installer. What I want to do is to install DoctrineMigrationsBundle to my project, so I added
"doctrine/doctrine-migrations-bundle": ...
0
votes
1answer
230 views
Not able to run composer.phar
Composer is a tool for dependency management in PHP projects. It allows you to declare the dependent libraries your project needs and it will install them in your project for you. Composer is not a ...
1
vote
1answer
357 views
Composer: how can I install another dependency without updating old ones?
I have a project with a few dependencies and I'd like to install another one, but I'd like to keep the others the way they are. So I've edited the composer.json, but if I run composer install, I get ...
0
votes
1answer
81 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. ...
1
vote
1answer
67 views
Is Composer for server or local use? [closed]
Is Composer designed to be installed on a web server or on a local computer?
2
votes
2answers
781 views
Upgrading Symfony2 and SonataAdminBundle (Mar 01, 2013) after last update
After last update SonataAdminBundle (Mar 01, 2013) I can not update components using composer
composer.json
...
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
...
0
votes
2answers
142 views
Get currently installed versions in composer
I have been working on a project using Symfony 2.1 on my local machine. I have uploaded it to my server but when I try and install the vendor bundles using Composer, I'm getting a lot of dependency ...
1
vote
1answer
255 views
Missing PHP53 or PHP54 from homebrew-php
With this command
$ brew install josegonzalez/php/composer
I get this message
Missing PHP53 or PHP54 from homebrew-php. Please install one or the other before continuing
Error: An unsatisfied ...
0
votes
2answers
199 views
jQuery as Composer depedency, why I'm forced to specify a version?
I want to manage jQuery using Composer.
I've added a custom repository and it's working fine. But why I need to specify a version and how to avoid this? The url will provide always the same stable ...
0
votes
1answer
130 views
PHP Composer, good design pattern for including suggested modules with namespaces
I am writing some code (a database abstraction layer, to be used in other of my code modules) that I would like to release as a standalone module that may be included in a project with composer. I ...
0
votes
2answers
195 views
Composer package autoloading
I can't get my library to work. The directory structure is lib-name/src and inside theres a main dir and a tests dir, how do I tell composer to load from the /lib-name/src/main folder?
Link to my ...
0
votes
1answer
285 views
Unable to AutoLoad Class using Composer
I have a project structure that looks like:
app/
app/models/
app/controllers/
app/views/
public/
vendor/
composer.json
Inside of app/controllers/IndexController.php, I have:
require ...
0
votes
1answer
203 views
Composer > Add class to classmap via the composer.json file?
using composer in a Php project, with Twig and my own framework.
I would like to "override" the Twig_Node_Expression_GetAttr class from Twig with my own class.
Everything it's working fine, but I ...
1
vote
1answer
92 views
Size of Symfony2 project too big when using Composer
First I downloaded Symfony2 framework (Standard Edition) from the official website and after installing it, the whole Symfony project had ~16MB in total.
After that, I wanted to start another Symfony2 ...

