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

6
votes
1answer
2k views

Error creating Symfony2 project from composer

I try to create a Symfony2 project with composer on Ubuntu with command: php composer.phar create-project symfony/framework-standard-edition projectpath And I get this error Installing ...
0
votes
2answers
708 views

Doctrine error: Class 'Doctrine\ORM\EntityRepository' not found

I'm new in Doctrine, I'm following the examples in the documentation. When I create a Repository class (e.g. UserRepository.php) and I try to extend EntityRepository class I get this error message: ...
14
votes
1answer
2k views

How to install jQuery with Composer?

I have been able to install repositories that do not have a composer.json file like this: { "type": "package", "package": { "name": "yahoo/yui-compressor", ...
6
votes
3answers
3k views

Where to register autoload when the vendor is not managed with composer in Symfony 2.1?

I'm using symfony 2.1 and I want to add a library to vendors. The library do not exists in packagist. I can't manage it with composer. When I install bundles or others vendors through composer, it ...
2
votes
1answer
962 views

Symfony 2.1, composer and git repositories

With Symfony 2.0.x I store all my client side dependencies (jQuery, etc) in the deps file so I can easily update them all at once with vendor/install, with the switch to composer in 2.1 this is not ...
11
votes
3answers
2k views

Zend Framework Composer Packages

I would like to add dependency to zendframework/zend-db package, so I added it to my composer.json: "repositories": [ { "type": "composer", "url": ...
4
votes
1answer
6k views

symfony2.1 bundle version confusion, for symfony and sonata admin / knp menu bundle

I want to use symfony2.1 for a new project. I try to install symfony2 with composer. But there were multiple errors/problems and so I have also questions for each problem in bold font style. Sometimes ...
1
vote
2answers
1k views

How can I install a composer package into the /src dir?

How do I have do modify my composer.json to install directly into the src-dir (Symfony/src)? { "name": "acme/example-bundle", "type": "symfony-bundle", "license": "MIT", "require": { "php": ...
4
votes
2answers
3k views

How to run composer from anywhere?

I have just installed composer in my /usr/bin folder, so when from that folder I run php composer.phar I get the help info about composer. But, when I try to run the same from other folder I get Could ...
3
votes
2answers
1k views

Force composer to download git repo instead of zip

I have some problem with composer. "require": { "php": ">=5.3.2", "kriswallsmith/buzz": "0.7" }, Repo https://github.com/kriswallsmith/Buzz/tree/v0.7 ...
2
votes
1answer
865 views

How to use phpunit installed from composer?

I want to start unit testing my symfony 2 application with phpunit. I installed phpunit using composer (per-project dependancy). http://www.phpunit.de/manual/current/en/installation.html How do I now ...
1
vote
2answers
341 views

Composer: Develop directly in vendor packages

I have a PHP project where I use composer. My own main library is actually a required package, as I'm also building a "standalone version" for people to install (not just the library), thus it lands ...
4
votes
2answers
275 views

PHPUnit's TextUI/command.php not found

I installed phpunit for my symfony2 project following this: How to use phpunit installed from composer? But I get the following error now: Warning: include(C:\Program Files ...
2
votes
1answer
148 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 ...
2
votes
1answer
702 views

ReflectionException: Class does not exist

I'm running into this error when I tried to run the composer { "name": "zepluf/standard-edition", "description": "The \"ZePLUF Standard Edition\" distribution", "autoload": { ...
2
votes
2answers
2k views

Symfony2 Composer Install

I am trying to install Symfony 2.1.3 (latest). I am running composer and installs everything okay. The only error that I get is: Script ...
2
votes
1answer
611 views

Symfony 2.1 Extending Core Classes

I am trying to override the core Symfony components with my own. The method I am using is: "autoload": { "psr-0": { "": "src/", "Symfony": ...
2
votes
5answers
2k views

Can't set/find detect_unicode to Off

I'm want to start using phpDocumentor and the manual installation keeps throwing an error about me not having set detect_unicode = Off in my php.ini in Terminal. When I add it to my php.ini it ...
1
vote
1answer
326 views

Zend Framework 2 - Composer - Manual installation of custom library is removed at install/update

I wrote an own library and included it manually in my composer/autoload_namespaces.php like I was told here. It works fine until I use the install or update command. Then this line is removed and I ...
1
vote
1answer
327 views

Composer is not reading my local Satis packages.json file

I have setup my local SVN repo to hold all external repos ( company policy ), using Satis I've created the packages.json file. when I run composer update how do I tell it to use my custom ...
0
votes
0answers
92 views

Composer Installation Error

I have two server setups on my local computer one is Zend Server and one is a Wamp because I wanted to start working with Symfony 2 and it would not install on Zend. When I try to install composer I ...
0
votes
1answer
328 views

PHP Fatal error: Uncaught exception PharException with message manifest

while trying to install composer.phar through command line , got an error PHP Fatal error: Uncaught exception 'PharException' with message manifest cannot be larger than 100 mb in phar please ...
0
votes
3answers
277 views

Symfony2/Git/CloudControl switching from Composer to Submodules

I need to switch from Composer (which is used by Symfony2 by default) to Git submodules. I thought I could just add the desired submodules to the desired locations, thus overwriting the current ...