konadrian
konadrian

Reputation: 581

How to add a Bundle?

I want add this bundle but I don't know how install it in my project.

I use Ubuntu, my project is located in var/www/Symfony. Any clue ?

Upvotes: 2

Views: 265

Answers (1)

Schwierig
Schwierig

Reputation: 712

You can find his bundle on packagist.org under: https://packagist.org/packages/ricktg/calendar-bundle

Just insert

"ricktg/calendar-bundle": "dev-master"

into your composer.json in your web folder and run a

composer.phar update

In your console.

Upvotes: 3

Related Questions