Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the standard way of packaging bundles for distribution in symfony2?

I have some bundles I'm likely to reuse across different projects, or even share with people, and want to package them in a distributable way.

What's the best way to package them for this purpose?

I also was considering distributing it with a sample app, to get people started quickly, is there a more or less standard way to do this?

like image 915
Jens Avatar asked Oct 09 '22 20:10

Jens


1 Answers

Check out the Bundle Structure and Best Practices cookbook entry. Also you can learn by watching the existing bundles, which you can find on the KnpBundles site.

Basically, people create a new project for each bundle on github. So, there is nothing special in packaging them.

like image 92
Elnur Abdurrakhimov Avatar answered Oct 12 '22 10:10

Elnur Abdurrakhimov