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
5answers
1k views

You must enable the openssl extension to download files via https

I wanted to install Zend Framework 2. So I downloaded the skeleton application. As mentioned in the ZF2 manual, we have to issue the command php composer.phar install Inside the skeleton. But ...
1
vote
1answer
55 views

How to make composer to use an exact SHA1 value?

I want to make sure composer is using an exact version of a git repository by specifing the SHA1 of the commit. How can I do this? I tried just putting the sha1 code into the version string, but this ...
0
votes
1answer
40 views

Satisfy Composer platform dependency using alternative path

How can I satisfy a Composer platform package dependency with an alternative path? I have a package that depends on php >=5.4, but my stock PHP is 5.3 and I have a separately maintained PHP 5.4 ...
0
votes
3answers
144 views

Cannot redeclare class error with CodeCoverage and Composer

I'm getting an error with PHPUnit Code_Coverage when using Composer's autoload.php as the bootstrap file. I've created my own boostrap.php file and simply include each file individually and everything ...
3
votes
1answer
247 views

dev-master in composer.json, is this madness?

I'm using composer (in Symfony2 projects) and often get errors updating libraries. Many libraries (most to my experience) use dev-master as version for their dependencies (or worse they use * ). ...
1
vote
0answers
179 views

Symfony 2.1-x / Composer ErrorException with DoctrineBundle

* Update: the issue could be resolved by reducing the Directory depth * I've tried to install the latest Symfony version (2.1.6, 2.1.5, 2.1.x-dev) via the recommended way using composer but it always ...
2
votes
1answer
54 views

Is possible to use a custom variable in Travis CI?

I know that there are some default variables for testing with different environments, like the one (for PHP projects) like SYMFONY_VERSION. My question is simple: would be possible to define a custom ...
1
vote
1answer
347 views

Using PHPUnit as Symfony 2 dependency

I'd like to use PHPUnit to test my Symfony 2 applications. I added PHPUnit to my Symfony 2 project composer.json file as described in the documentation: "require": { ... ...
0
votes
1answer
166 views

Symfony2 using third party vendors inside a bundle

I am creating a CpanelBundle which will integrate the Cpanel xmlapi into Symfony. I will use the class provided by CpanelInc here: https://github.com/CpanelInc/xmlapi-php. I want to make this bundle ...
0
votes
2answers
500 views

Composer not installing Uncaught exception 'ErrorException' with message 'Undefined index: argv'

Once I download composer to my remote web host. I try to run the command "php composer.phar install" Once I run this command like it says in the documentation, I get errors like no tomorrow. ...
1
vote
1answer
65 views

How do I set the correct settings for my composer installer

My current folder structure: Composer/PluginInstaller.php The content of composer.json: { "name": "zepluf/installer", "type": "composer-installer", "description": "Composer installer for ...
10
votes
1answer
702 views

Adding a package with Composer (through SVN)

I created a SVN repository for my personal PHP library, and added a composer.json file at the root level: { "name": "myPersonalLibrary/lib", "type": "library", "description": ...
1
vote
1answer
188 views

Why is Symfony 2 installing all DEV versions of vendor modules?

So I was trying to install DoctrineMongoDBBundle and part of the instructions it said was to add the following to my composer file: { "require": { "doctrine/mongodb-odm-bundle": "3.0.*" ...
1
vote
1answer
578 views

Runtime exception with Composer install/update on shared hosting w/ Symfony2

I seem to be having some problems with cache permissions on shared hosting. Specifically, when I try to install/update vendors via Composer, I get a runtime exception: $ php composer.phar update -v ...
3
votes
1answer
161 views

Better approach to download php composer dependencies

I have been using maven in JAVA and started using PHP Maven, recently I switched to composer. My project is with Zend Framework 2 and the team only checks in the application code not anything on the ...
1
vote
1answer
908 views

PHP Composer install

I'm in a console with a ssh connection to a server. Now I have a clone of my project from git. If I do the following thing: php composer.phar install I get the next error: Loading composer ...
1
vote
2answers
907 views

Composer Warning: openssl extension is missing. How to enable in WAMP

Trying to install Composer dependency management tool on Win7/64 + WampServer 2.2 via the Setup Installer and I am getting the following message: The openssl extension is missing, which will ...
1
vote
1answer
265 views

Which PHP file to add to my Path using WampServer (Win7/64)

I've been reading up on TDD using PHP and i'm ready to install PHPUnit, however... I'm on Win7/64 running WampServer I'm reading all these PEAR/PHPUnit install nightmare stories which are making me ...
0
votes
1answer
72 views

PHP User Documentation tool similar to Grails gdoc [closed]

I have been using Grails gdoc for few of my grails project, and I like it quite well for user help and support documentation like a manual (Grails GDoc Documentation). I am looking for something ...
1
vote
2answers
250 views

php Composer windows install weird directory error

Okay, I am a really big noob for windows, Today I wanted to install composer for the first time and I ran into weird directory errors, when I select my php path for the php.exe And it keeps ...
0
votes
0answers
142 views

composer never completes successfully

I'm using composer with symfony and I found out that after I install or update any new bundle by running composer update it copies things to respective folders but throws few errors before completing ...
2
votes
1answer
773 views

PHP - Installing Composer - failed to open stream: php_network_getaddresses: getaddrinfo failed: No such host is known

I am attempting to use the Composer Dependency Manager for PHP, but I am experiencing the following issue when I use the Composer-Setup.exe (Win32 installer). Download failed: ...
5
votes
1answer
824 views

Composer, minimum-stability and dependencies of dependencies

I'm in quite a pickle with a new project and Symfony 2 dependencies using composer. First some situation, i install the symfony/framework-standard-edition v2.1.5 using composer. This yields a ...
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
2answers
157 views

How do I define an explicit SVN revision for a Composer repository?

I'm trying to include google-api-php-client library to my project using Composer. Simpliest way is to get library from VCS trunk branch, but I think it's not the best idea in my case. Much better will ...
3
votes
2answers
180 views

composer package testing bootstrap

I've written a package and as part of the development proccess I want to run unit tests on it. This basically means I need a bootstrap file to register the autoloader for my package. Any package I ...
2
votes
1answer
699 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
44 views

symfony2 Bundle Updater

I have a Sf2 project that I would like to distribute. The project is already usable but should/will be modified as time pass so I am looking for a solution, without reinventing the wheel, to implement ...
1
vote
1answer
620 views

Composer vs Symfony 2 autoloader

I'm starting to use Composer in a project, in which I historically had all the dependencies under version control. This project currently uses the Symfony 2 autoloader. Because Composer comes with ...
6
votes
1answer
704 views

How to use PHP Composer on HostGator

I recently decided to start a project in Zend Framework 2 and was having trouble getting it to run on a HostGator shared server. By default, HostGator's shared servers run in PHP 5.2.2 and if you ...
0
votes
2answers
711 views

doctrine mongodb intallation error through composer

I am trying to install Doctrine MongoDB ODM module through composer with Zend Framework 2 on my local machine but I keep getting an error stating that PHP extension mango is missing from my computer. ...
0
votes
1answer
286 views

composer update ignore deps

How can i tell composer to ignore certain deps while running update? I know i can update certain packages with: php composer.phar update vendor/package vendor/package2 But i would like to have ...
0
votes
1answer
994 views

Composer phar package not found

I am trying to create a new composer library package. I created the composer.json file using the composer.phar create-project xlix vendor/xlix/xlix 0.3 command. In the filesystem the file ...
1
vote
1answer
61 views

HTMLPurifier Linkify broke when upgrading from 4.2 to 4.4

Today I installed Composer and installed HTMLPurifier, which replaced my old zipped download. This moved my version from 4.2 to 4.4 This code now no longer works: $config = ...
0
votes
1answer
196 views

Composer does not find dependencies of vcs repository

i've got a strange problem ... project-a is my main project. project-b is my library, checked in to subversion composer.json of project-b { "name": "fragger/baseclasses", "version" : "0.0.1-dev", ...
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
861 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
1answer
199 views

Call a .phar executable from inside a web app controller

I need to run composer.phar update from a web controller. I can run all kinds of regular commands in this way (ls, cp, etc) but when I invoke the phar file I get empty output. The code I have looks ...
0
votes
1answer
79 views

Why would they write composer.json in 1 line like this?

Not sure if I understand the point of writing .json config in a single line like this with both forward and backwards slashes?: {"name":"zendframework\/zendservice-twitter","description":"OOP ...
0
votes
1answer
637 views

Is there a way to uninstall dev dependencies with composer?

I want to uninstall (and not remove from my composer.json) dev dependencies on a project. Is there a simple way to do this ? Thanks, Yohang
1
vote
3answers
811 views

How to use composer packages in codeigniter?

I've followed this article: http://philsturgeon.co.uk/blog/2012/05/composer-with-codeigniter But I get Fatal error: Class 'Buzz\Browser' not found. What is missing from his post? My controller or ...
1
vote
1answer
1k views

Understanding composer.phar error

I'm new with Symfony2 and with composer.phar to install bundles. Every time I want to install a new bundle I have errors. I don't know if it is my composer.json that is broken or if it is my complete ...
2
votes
2answers
800 views

Composer versioning private repositories

I have several private repos on github that I use composer to load into my projects. My composer.json file looks like this: ... "repositories": [ { "type": "git", "url": ...
1
vote
1answer
126 views

How to download .zip for a particular commit?

I want to download a .zip (I need it for a Composer package) with the source of a library hosted on github, but I don't want the master, because every time I download I could be downloading a ...
1
vote
1answer
63 views

Including CLI scripts in composer packages

i've got a composer package hosted at http://github.com/danmatthews/req that i'm attempting to include a CLI script with, using Composer's bin directive in composer.php. The problem? My script is ...
0
votes
1answer
579 views

How to avoid composer discard changes message

I'm updating symfony verdors via composer. I always do it using: php composer.phar update But recent version of composer, before update each package show a message like this: - Updating ...
4
votes
2answers
376 views

Symfony2 : Integrating with a Non-Namespaced SDK (Paypal Specifically)

I've created a PaypalBundle and added the Paypal merchant-php-sdk to my composer.json and now I've got a vendor\paypal\merchant-php-sdk directory. But this SDK isn't namespaced and doesn't seem very ...
-1
votes
1answer
156 views

How to add simple-html-dom composer package in Symfony2

Simple-html-dom is listed in packagist.org how it should be included in symfony2?
0
votes
1answer
41 views

Composer returns ???? on CloudLinux ssh

i've just installed composer through ssh on a CloudLinux server, and but it returns ??? when used. I installed it with curl -s getcomposer.org/installer | php -d detect_unicode=Off because my ...
1
vote
1answer
146 views

How to make a Symfony 2 bundle with an optional dependency?

Say that your bundle use some RESTful service and can work with two different PHP HTTP clients: guzzle/guzzle as well as with kriswallsmith/Buzz. Because it uses adapters and interfaces. How can I ...

1 3 4 5 6 7 9