Skip to content

benedmunds/Laravel-Composer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

#Composer bundle for Laravel

This bundle will autoload your Composer packages.

##Composer Setup Install composer inside your project directory

$ curl -s http://getcomposer.org/installer | php

Create a composer.json file at the root of your project

{
    "require": {
        "php": ">=5.3.0"
    }
}

Install your composer packages

php composer.phar install  

##Bundle Setup Install the composer bundle

$ php artisan bundle:install composer

Include it in application/bundles.php

return array(
	'composer' => array('auto' => true),
);

Now you can use Composer packages and they will be loaded automatically.

See Packagist.org for Composer packages.

Bundle created by Ben Edmunds.

About

Automatically loads Composer (http://packagist.org/) packages

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages