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

1
vote
1answer
7 views

Composer option to use alternative to composer.json?

I've just started using the Composer feature where you tell it to look at local directories for dependencies, so that you can develop a library and something that uses that library in parallel without ...
-2
votes
1answer
31 views

Composer not intalling new libraries

I'm using Composer along with my PHP project. It was working fine and I had installed a few php libraries from packagist. But after I restarted the server for maintenance reasons, it seems like ...
0
votes
3answers
29 views

Failed opening required 'dompdf_config.inc.php'

I am stuck in a very annoying error when trying to load dompdf lib via composer. Fatal error: require_once(): Failed opening required 'dompdf_config.inc.php' ...
1
vote
0answers
24 views

Composer: multiple vendor directories (zend seperate dir than doctrine,…)

I've new to composer and I searched a few hours on the internet to find a solution for my problem, I've found one but can't get it to work so it's probably me. I'm starting a new project with zend ...
0
votes
1answer
10 views

composer and site configuration files

Is it possible to install a file out of the 'vendor' directory when doing a composer install/update? Let me elaborate a bit more if your not sure what i mean. I have a config file(s) that are stored ...
0
votes
1answer
19 views

How to ignore directories with Composer?

I'd like to release a PHP library and submit it on Packagist to have it installable via Composer. My library has the following structure: lib/ tests/ composer.json README.md Basically, whenever I ...
-2
votes
1answer
53 views

My shared hosting doesn't allow me to run phar over SSH. How do I dump-autoload? [closed]

Is there a dump-autoload equivalent for such scenarios where I'm not given appropriate SSH permissions? Maybe reuploading some files might trigger autoloading classes in laravel?
0
votes
1answer
22 views

Cannot install CalendarBundle via Composer

I want to use yvoyer/CalendarBundle on my Symfony2.2 project. I add it on composer.json and run: composer update star/calendar-bundle --prefer-source And it return this error: $ composer update ...
0
votes
4answers
78 views

How do i run 'composer' command via SSH?

I want to reload my project's custom classes in Laravel so they become accessible, but on a shared hosting enviroment. To my understanding, so far, locally, I've been achieving the desired by using ...
0
votes
1answer
24 views

When doing composer update, composer complains that files are edited?

When I run php composer.phar update composer complains that all of my libs are modified - even though I didn't touch them. Updating jdorn/sql-formatter (dev-master 3d8a973 => v1.2.9) The ...
0
votes
1answer
105 views

Install command is not working in Composer

I am trying to install composer. I downloaded it using windows installer. My composer.json looks like this { "require": { "monolog/monolog": "1.2.*" } } Now when I try to run the ...
0
votes
1answer
13 views

Composer - “Skipped tag , invalid tag name”

When I update my project with php composer.phar update --verbose I can read this: Reading composer.json of myVendorName/myPackageName (0.1) Importing tag 0.1 (0.1.0.0) Reading composer.json of ...
5
votes
2answers
94 views

Composer install/update failing

I'm having an issue installing a package that I created.... https://packagist.org/packages/mardy-git/redirect As far as I can tell, everything is working fine and I should be able to install it. ...
2
votes
4answers
554 views

Unable to install laravel 4 using composer on ubuntu

ubuntu@ip-10-252-31-19:/$ sudo curl -sS https://getcomposer.org/installer | sudo php ubuntu@ip-10-252-31-19:/$ sudo mv composer.phar /usr/local/bin/composer ubuntu@ip-10-252-31-19:/$ cd /home/user ...
0
votes
1answer
63 views

Publishing a config file for TCPDF with Laravel 4

Although I've used TCPDF before I am using it with composer for the first time through Laravel 4. I am fighting the urge to edit any package files directly but their are config settings/ constants in ...
0
votes
0answers
15 views

missing composer package in github jam/config

I clone a repository when use , composer.phar install , got an error like this : - Installing jam/config (dev-master 1.2.1) Cloning 1.2.1 - git://github.com/JamPHP/Config.git ...
-4
votes
0answers
25 views

Can composer load private libraries/repositories? [closed]

Is it possible to load private, unpublished libraries with php composer? For example, if I wrote my own utility functions, how would I load those into my projects using composer without making a ...
0
votes
1answer
28 views

Is there any good reason to not put composer in the path?

In every tutorial I see using composer people are storing composer.phar somewhere and calling php composer.phar I've renamed composer.phar, I've putted it in my path so I can do: composer Is ...
0
votes
1answer
32 views

Symfony2.2 can't run composer update

Since this morning I can't update my vendor packages in Symfony. I get the following error: PHP Fatal error: Class 'Composer\Script\PackageEvent' not found in ...
0
votes
1answer
188 views

Error updating dependencies composer

When I try to update, I get this error: C:\wamp\www\bwon>composer update Loading composer repositories with package information Updating dependencies (including require-dev) - Installing ...
0
votes
1answer
187 views

PHP Composer: choosing the right package for Laravel (or other framework)

This may look like a trivial question, but it isn't. Being new to composer, I find myself wondering about how to pick a decent package for a common feature on its main repo packagist. Say I am using ...
0
votes
0answers
38 views

Composer error when installing 3rd party Bundle in Symfony 2.1

I'm having a problem when I try to install a 3rd party Bundle (SimpleHtmlDomBundle). I put in the composer.json file(located at /var/www/Symfony/composer.json) the require text. Composer.json file ...
1
vote
4answers
243 views

Unable to update Laravel 4 with Composer (Update: bug?)

Today, I pulled down the laravel/laravel repository from Github. I then ran php composer.phar install (as I normally would on my system, with a command window in the project directory). However, when ...
0
votes
1answer
58 views

Ratchet basic chat application giving error “Failed opening required”

I'm trying out the Ratchet library to use WebSockets located at http://socketo.me/ but am experiencing some problems when running the server script from the command line in Ubuntu. After successfully ...
2
votes
1answer
70 views

What does the Value in PHP Composer's key/value Pair Represent?

In a PHP composer.json file, the require field contains a number of key/value pairs. "require": { "php": ">=5.3.3", "symfony/console": "~2.3@dev", "symfony/finder": "2.2.1", ...
0
votes
3answers
158 views

Symfony 2.2.1 fatal error on remote server (only)-why?

On the Symfony codebase mentioned in this question, after installing FOSUserBundle, it works locally, but on the remote server it doesn't even get to bootstrap, giving an HTTP 500 error page. Edit: ...
4
votes
2answers
676 views

Problems with lib-icu dependency when installing Symfony 2.3.x via Composer

I've had no problems installing the Symfony 2.2.x using Composer, I've always just copied the stable version at http://symfony.com/download. composer create-project symfony/framework-standard-edition ...
3
votes
1answer
52 views

Update Vendors in Sylius - Imagine Bundle Error (Symfony2)

I am trying to install Sylius - Open Source E-Commerce based on Symfony2 from this link The composer can successfully pull the project files from github but while updating vendors i get this error ...
0
votes
2answers
30 views

maintaining a composer.json for reuse between projects

At our company we aim to use Symfony2 for all our new projects. There are a couple of additional bundles that we almost always add to the projects, such as the FOSUserBundle and KnpMenuBundle. We ...
0
votes
1answer
26 views

How can I enable composer to have command line argument auto complete?

I would like to be able to use tab auto completion with composer in my bash shell, the same way I can for example auto complete filenames or git commands.
0
votes
1answer
39 views

installing aws API on symfony2

I am working on a project under symfony 2.1 We need to install and use AWS API (for using cloud with PHP/CURL). So I follow these insctructions I choose composer for installing the SDK ('cause symfony ...
0
votes
1answer
20 views

Installing behat with mink on windows using composer

I am trying to install mink/behat on windows machine using composer by following the help given on behat page. http://docs.behat.org/cookbook/behat_and_mink.html. But when I run php composer.phar ...
0
votes
1answer
25 views

Override Composer autoloader

Background I'm developing a series of websites which share a common engine. Something very similar to StackExchange's network of websites. Every webiste is a separate Symfony2 installation on a ...
0
votes
3answers
153 views

composer.json fails to resolve installable set of package

i can't install stof/doctrine-extensions-bundle with my composer.i 'm using Symfony2.1.9 version.a lot of problems are shown.the first one is:the requested package stof/doctrine-extensions-bundle ...
2
votes
2answers
71 views

Updating the composer.phar on Symfony2

I have an already started Symfony2 project. I need to install a new bundle, and as I saw i need to add a new line to my composer.json and then execute the update command. The thing is, my ...
0
votes
0answers
22 views

composer lib local unpushed commit status

I'm working on a php composer lib. I make some local commits on the lib but don't push them. Then I use composer update to fetch updated commits from other people, and my local commits disappear. Is ...
0
votes
1answer
16 views

How in Composer.phar to install some package with latest version?

For example if I does not know which version are exists in package, and author does not specify versions in README, how could I install just latest version? composer.phar install vendor/package ?
0
votes
2answers
98 views

Laravel 4 (Beta 5) Routing error

I decided to use a new framework to me for my new project so i started with Laravel! I'm starting to like it, had few problems but it sorted out. But now i'm having hard times with Routing! Using ...
1
vote
1answer
142 views

Symfony2 install bundles with composer

I'm creating a site using the Symfony 2 and I have big problems with installing KnpMenuBundle. I read a lot about such problems. And I tried a lot of variants how to fix this. But nothing helps. This ...
1
vote
0answers
28 views

PHPSpec loads file but not directory

This commands works (specify file): ./vendor/bin/phpspec.php Spec/Model/Entity/DescribeCustomer.php -f d -c --bootstrap module/Application/tests/Bootstrap.php But using the directory does not: ...
0
votes
1answer
50 views

Composer.phar don't want to run by shell_exec from PHP script. Why?

Trying to execute it with all possible params, such as -d and full path etc.. No errors. When running another commands, all is ok, when running composer from CMD, all is ok too. Have tried exec, ...
0
votes
1answer
38 views

Install ClassLoader component

I want to install a 3rd party library and after searching I tryed to include this in app/autolad.php: loader->registerNamespace('libMyLib', __DIR__.'/vendor/mylib/libmylib'); Which throws an ...
0
votes
1answer
29 views

Ignore a git directory in composer package

I have composer library hosted as a package on Packagist through GitHub. The repository includes a directory named sample with some samples on how to use the code and this directory is really not ...
1
vote
0answers
173 views

**SOLVED** Composer error when trying to load ZendFramework 2 skeleton app **SOLVED**

I have recently started to learn ZendFramework2 and am at the part where I need to run php composer.phar install to initialize the skeleton application. I’ve already successfully executed the ...
0
votes
1answer
76 views

Custom installation path for composer packages

Hi I am trying to setup a project using composer. I am able to install CakePHP but I am getting a hard time installing cakephp/debug_kit on a custom direcoty. I am trying to install it on ...
0
votes
2answers
79 views

PHP try-catch not recognized on command-line? (Trying to install Composer)

I am trying to install Composer (http://getcomposer.org/download/) on a GoDaddy-hosted Linux server but it's not working. No matter which method I try, I eventually run up against some version of the ...
0
votes
2answers
521 views

composer and php installation conflict for laravel 4 artisan

hi i start working Laravel 4, i have finished the installation process with composer, but when try to use artisan it always give a message Laravel requires the Mcrypt PHP extension i have checked ...
0
votes
1answer
196 views

Laravel routes not working.

Trying to get started with Laravel. Going through a simple tutorial (I thought) and they have this going through the route.php page. Route::controller(Controller::detect()); Route::get('about', ...
0
votes
1answer
33 views

Composer - Default option for dev requirements

I noticed that ... When I run 'composer help update' It tells me that the --dev option is enabled by default --dev Enables installation of require-dev packages (enabled by default, only present ...
0
votes
1answer
118 views

Composer Not Generating Autoloads For Library

I've set up two projects, an 'init' and a library, which is required by the init. They both have PSR-0 autoloads set, but the autoload values from the library are not added to the ...

1 2 3 4 5 9