Tagged Questions
0
votes
1answer
18 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
1answer
347 views
Change Composer git source for a package
I pull in a package using Composer with this composer.json:
{
"require":
{
"torophp/torophp": "dev-master",
},
}
When I run composer install it seems to pull this package from ...
0
votes
0answers
97 views
Composer + PHPUnit autoloading and github publishing
Ok, I must admit I'm really confused about this and seem to run in circles when trying to figure out a solution. This might look like it should be separated in different questions but the thing is: I ...
1
vote
0answers
87 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
124 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
434 views
Composer cannot find package for a Symfony2 bundle
I'm creating a Symfony2 bundle hosted on GitHub. I suppose that everything is configured well! However, when I try to install it something goes wrong.
Here follows a summary of the key info.
First, ...
1
vote
1answer
125 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
0answers
65 views
Composer without composer.json
Is possible to require project via composer from github which hasn't composer.json (etc. https://github.com/sebastianbergmann/phpcpd)?
2
votes
3answers
546 views
How to require a fork with composer
here is my composer.json, i want to use Nodge's fork of lessphp project on Github
"repositories": [{
"type": "package",
"package": {
"version": "dev-master",
"name": ...
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
...