0
votes
1answer
45 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 ...
0
votes
1answer
151 views

Private composer repository

I have setup a local SVN repository with the following layout trunk satis libraryA trunk src composer.json tags branches Which is complying with the ...
0
votes
1answer
27 views

Satis build tells that Authentication failed

I am preparing private package repository using satis. We are using git for versioning our source code. When I use credentials in repository address everything works well, packages.json is where it ...
1
vote
1answer
57 views

Satis with local git repository trouble

I've read this for setting up a local Satis server, I've managed to do it and see the web view on my virtual host. Now, I have two projects listed there, one requires the other. On another project 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 ...
1
vote
1answer
202 views

Satis - Storing a Packagist repo locally with local changes that will not be for public consumption

I want to know if I store an existing Bundle that's on http://packagist.org in my company svn repo, do I also need to store the required packages/repos as well? Example, the MonologBundle: ...
1
vote
1answer
304 views

Satis - SVN HTTP authentication option

Satis Docs: http://getcomposer.org/doc/articles/handling-private-packages-with-satis.md I see the option for GIT authentication via SSH and SSL but would I wanted to know what about basic HTTP ...
0
votes
1answer
188 views

Satis - How to set name in generated packagist packages.json

Here are the docs: http://getcomposer.org/doc/articles/handling-private-packages-with-satis.md Here is my config.json file { "autoload": { "psr-0": { "": "src/" } }, "name": ...
4
votes
1answer
1k views

How to use composer with a non-packagist github project containing a packages.json

I want to put https://github.com/timrwood/moment into my composer.json for easy maintenance. It's not an official packagist project (of course, as it's not PHP), but it contains a packages.json for ...
2
votes
1answer
500 views

Can I synchronize or mirror dependencies from packagist.org with my own Composer Satis installation?

We have our own Satis repository, we can store there our own dependencies. This works fine. But if a developer uses a package that is not within in our own repository, then Composer will fetch it ...
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 ...