Laravel 4 Package installation using composer

composer-php, laravel, laravel-4, php

Solution

Just using packagist, you can go to packagist.org , after that just put the package name at require key in your `composer.json` on your laravel project, and that run this command , `composer update` or `compose install`

in example :

// composer.json
"require": {
    // default value..
    "intervention/image": "dev-master",
}

i hope this help

Problem

I need to know how to install packages in laravel 4. I have downloaded a bundle from github, but executing the `bundle`, I see it is deprecated in Laravel 4. Can anyone please help me.

Original source