-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
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 ...
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
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 ...
0
votes
3answers
173 views

How should git submodules be set up for laravel 4 composer packages?

I'm building an app with laravel 4, and am looking to deploy to a cloud server for further testing. The general process I usually do is local > push to github > clone to server. The problem with this ...
4
votes
2answers
83 views

How to make a composer depency commitable?

I'm using composer to manage dependencies of 2 symfony2 projects. As these 2 projects have some common stuff, I created a (private) common bundle that is required in both composer.json Here is my ...
1
vote
1answer
37 views

Composer: package installation requires svn/git?

How can I tell which packages require which version control? For example, I have the following Composer.json { "name": "sample/app", "description": "sample app", "require": { ...
2
votes
1answer
128 views

Git post-checkout - how to reject push if Composer installation fails

So I've set up a post-checkout hook on my server that will run Composer #!/bin/sh # Composer Git Checkout Hook PROJECT_NAME=example.com cd /home/www/$PROJECT_NAME/htdocs unset GIT_DIR # Process ...
3
votes
2answers
114 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 ...
2
votes
1answer
463 views

have composer update get latest version from git repo

I am trying to move away from git submodules for the development in my team. The most important reason for this is that when a team member commits changes in a submodule, but forgets to push to ...
2
votes
1answer
338 views

Repository deployment and Composer : what workflow?

As a PHP developer I find myself working with Composer a lot. In the past it was on personal projects and such so I didn't have much problems with it, but now with Laravel 4 it's on project that ...
1
vote
0answers
103 views

How to use composer to install part of a git repository?

I want to require only a sub portion of a git repository (instead of the full thing). The reason i want to do this is because the repository is huge. In my case the repository is: ...
0
votes
2answers
144 views

git clone giving a permission denied despite i can ssh into github

We want to get some private repositories from Github into our development server. This works: ssh -vT git@github.com However git clone 'ssh://github.com/company/repo -v' ...
1
vote
1answer
65 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 ...
1
vote
1answer
1k 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 ...
2
votes
2answers
1k 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": ...
2
votes
1answer
148 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 ...
2
votes
1answer
288 views

Resolving Composer merge conflicts when upgrading Symfony2 Standard Edition

My project is based off of the Symfony Standard Edition which I cloned from the original Symfony SE repository. Symfony of course distributes its own composer.json and composer.lock files noting its ...
5
votes
1answer
1k views

composer.lock part of the repository?

I'm a little confused with composer.lock used in an application with a repository. I saw many people saying that we should not .gitignore composer.lock from the repository. But if I update my ...
1
vote
2answers
393 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 ...
1
vote
2answers
190 views

How do I push files specified in .gitignore?

If I have a "vendors" directory in my .gitignore, is there a way I can set up a remote that will receive that directory anyway when I do a push?
2
votes
1answer
425 views

Mark code as stable using composer

I've recently come across the change in composer meaning that the default minimum-stability is stable, and rather than set this to dev I'd like to mark some of my libraries as stable. I actually use ...
5
votes
1answer
2k views

How to use git with Symfony 2?

I installed Symfony 2 with Composer (following the 'master' guides), and it created this .git/config file: [core] repositoryformatversion = 0 filemode = true bare = false ...