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

learn more… | top users | synonyms

0
votes
1answer
268 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
263 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
191 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
115 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
112 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
70 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
153 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
110 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
204 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
587 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
89 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
66 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
236 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 ...
3
votes
2answers
112 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
125 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
597 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
387 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
556 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
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. ...
1
vote
1answer
82 views

Is Composer for server or local use? [closed]

Is Composer designed to be installed on a web server or on a local computer?
3
votes
2answers
1k 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
186 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
319 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
252 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
155 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
288 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
481 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
314 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
113 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 ...
2
votes
2answers
44 views

cloudControl - PHP: (temporarily) disable composer

I am happily developing a PHP app using Composer on cloudControl. It's great how it is integrated into the deployment procedure. However, there's no need for Composer to update on every deploy. Is ...
3
votes
1answer
161 views

What is the difference between Pyrus and Composer?

I'm new to Zend Framework 2.0, after reading the documentation I know that we can install Zend via some package managers as Pyrus, Composer. But I don't know which package manager should I choose? ...
0
votes
1answer
87 views

Application theming and composer? [closed]

I am using the Laravel 4 (beta) framework my new new application which is designed as an open source download and run this install script (e.g. blog, timetracker etc) type application. I am wanting ...
0
votes
1answer
117 views

namespaces - composer cannot load classes when moved into src directory

I am preparing php library and decided to reorganize directory structure a bit. Everything was working and from this structure: I decided to move into: I regenerated autoload (php composer.phar ...
1
vote
1answer
130 views

php Composer : what is BootStrap process?

the detail is as links : http://getcomposer.org/doc/00-intro.md#autoloading Besides downloading the library, Composer also prepares an autoload file that's capable of autoloading all of the ...
0
votes
2answers
489 views

Setup Zendframework 2 and twitter bootstrap using Composer

I am currently using composer dependency manager for zendframework 2 along with twitter bootstrap , I able to successfully manage zendframework 2 but I am not able manage twitter bootstrap via ...
2
votes
1answer
226 views

Composer ignoring zip dependecies' composer.json file

I'm using Composer for a project that needs to handle some dependencies but I got a really weird issue. Composer is ignoring the composer.json file contained in child packages. My project needs to ...
0
votes
1answer
37 views

Composer - copy vendor files from dev to production is OK?

I'm using composer for AWS SDK. Is it OK to install the SDK on a dev pc (windows) and copy the vendor directory to production or must I install composer on the production server (linux) and get the ...
0
votes
1answer
303 views

composer autoload not working on production server

I've setup a project localy using composer to autoload my vendors and modules. This is done on a Windows XP machine running Nginx. When I sync everything to my production server, running LAMP, the ...
0
votes
1answer
156 views

Composer post-install-cmd script to run interactive CLI/PHP command

I'l like to be able to run an interactive script, PHP or otherwise, after a Composer install or update to prompt the user for configuration details (database credentials). But I'm not sure that ...
2
votes
1answer
107 views

Installing jasny/boostrap with composer for symfony2

Getting used to installing composer unaware packages for symfony2 using composer. The configuration for twitter/bootstrap was: "repositories": [ { "type": "package", "package": { ...
1
vote
3answers
281 views

Including two bundles which are using the same subbundle

Im trying to use the following two bundles in my symfony2.1 project: sonata-admin bundle braincrafted bootstrap-bundle My problem is, the two bundles use both knp-menu bundle. But sonata needs ...
0
votes
0answers
228 views

Install or use php composer in windows (fails)

so basically i was using composer on my windows installation without any problems. Suddenly i get this error on every project (installing composer.phar manually): [RuntimeException] ...
1
vote
1answer
147 views

How to upgrade symfony2 version?

Is there a easy way to upgrade your symfony2.1.6 to 2.1.7 via command line or so? I am using composer.json
2
votes
1answer
870 views

How to deploy Laravel 4 Apps on Heroku?

I know that Heroku supports many different environments in the Cedar stack including PHP. The tipical folder structure of a Laravel 4 app is the following: app/ bootstrap/ public/ packages/ ...
0
votes
1answer
112 views

Storing composer packages under development in the vendor directory, how to set up autoloader?

I am developing a package and I want to store it in the vendor directory before I publish it. So, The path to say Basset's service provider once it is installed via composer is ...
1
vote
1answer
117 views

Composer assumes file in wrong directory

I want to install the pdf bundle to my symfony 2.1 system (https://packagist.org/packages/psliwa/pdf-bundle) Since it requires some Zend libraries, composer will install them too, but will later not ...
0
votes
2answers
347 views

Composer package folder structure created with Laravel 4's “bench” command

So, I have created a composer package for Laravel 4 using php artisan bench --composer This is all working great, But, I was looking through the Basset Packages vendor folder, and I noticed that our ...
3
votes
1answer
420 views

Some Laravel 4 PSR-0 issues?

I have noticed that Laravel 4 is using some of the PSR standards. I have recently installed the SensioLabs tool php-cs-fixer that detects and fixes most of the issues when we want to follow the PHP ...
0
votes
1answer
56 views

Automated command to generate composer.json?

Is there an automated command to generate the composer.json file? I was hoping for something interactive that just asks me the package names and dumps them into a composer.json file interactively. I ...
0
votes
1answer
49 views

Using composer to replace changed files in a library

I was trying some things out with an installed library and ended up changing a few files. I'd like to revert these back to their original state. I know I could just delete the library and install it ...

1 2 3 4 5 9