Jquery 1.10

I am trying to get only jQuery 1.10 to run on our server.

I have installed Yii using composer, after installing I added the following to composer.json


"yiisoft/jquery": "1.10.*"

Then I ran composer update, and so I now have jQuery 1.10.2 at @app/vendor/yiisoft/jquery/jquery.js

But that is obviously not enough, loading my site I see jQuery 2.0.2 still being included.

What else do I have to do ? I have tried to google and search this forum and I cannot find any more useful information.

I have solved this now using the following:




    "require": {

        ...,

        "bower-asset/jquery": "1.11.*@stable"

    },



I also had to delete the vendors directory before running "composer update"

Hopefully this helps someone else. If someone has a better solution I would still love to hear it.