Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been able to install repositories that do not have a composer.json file like this:

    {
        "type": "package",
        "package": {
            "name": "yahoo/yui-compressor",
            "version": "2.0.4",
            "dist": {
                "url": "http://yui.zenfs.com/releases/yuicompressor/yuicompressor-2.4.7.zip",
                "type": "zip"
            }
        }
    },

I took the "type": "zip" part from the docs, but I couldn't find many other types. For example, I need to install jQuery, but I don't know what to put in type ("js" did not work).

    {
        "type": "package",
        "package": {
            "name": "jquery/jquery",
            "version": "1.7.2",
            "dist": {
                "url": "http://code.jquery.com/jquery-1.7.2.js",
                "type": "js"
            }
        }
    }

Any ideas?

share|improve this question
1  
Currently I'm using a CDN, but I'd like to get jQuery by Composer or git submodules as well. I don't like the idea of putting 3rd party libraries into my repos. BTW, JS popularity on GitHub is overrated because of all this JS copypasta taking place. – Elnur Abdurrakhimov Jul 26 '12 at 7:36
Here is a french solution about that. – j0k Mar 12 at 9:17

1 Answer

up vote 15 down vote accepted

This is simply a missing feature. There should probably be a new type of dist which is just a single plaintext file to be downloaded and left as-is. Please file a feature request on the github issue tracker: https://github.com/composer/composer/issues/

EDIT :

The feature actually exists but wasn't documented.

"type": "file"
share|improve this answer
1  
Thanks, I filed this issue just now: github.com/composer/composer/issues/946 – ChocoDeveloper Jul 26 '12 at 13:52
Stof commented on the issue, the feature exists. I edited your answer. – ChocoDeveloper Jul 27 '12 at 1:30
It would be nice to know if there is a way to get multiple files from a repository. Some plugins include stylesheets and images, would that imply creating one package per file? – Jbm Apr 29 at 6:45
@Jbm is it a git repo? you can do {"type": "package", "package": { "name": "vendor/app", "version": "1.2.3", "source": {"url": "htps://github.com/vendor/app.git", "type": "git", "reference": "1.2.3" } } } Replace htps with https – intrepion May 1 at 21:34
I'll try that. I think what I'm missing is a way to put the files on the web directory. Creating a bundle just for assets is an overkill. It should be possible to install js files directly to the web directory. – Jbm May 1 at 22:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.