php - Laravel 3 bundles in Laravel 4 -


in l3 there great thing - packages. have own routes , worked plugins , made software more modular. how achieve in l4? see packages little different bundles.

thank you!

bundle specific packaging laravel 3, great add package not standard.

laravel 4 more modular because accepts packages form php community. uses standard package manager, composer, , laravel 4 managed package.

you have create composer.json file 1 :

{     "require": {         "laravel/framework": "4.0.*"     },     "require-dev": {         "phpunit/phpunit": "3.7.*",         "mockery/mockery": "dev-master@dev",         "sebastian/phpcpd": "1.4.*"     } } 

and execute composer update. dependencies of project installed in accordance versions specify in file. it's best pattern manage lot of libraries team.

bundles , packages similar, gift wrap , shipping way change that's all.


Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -