PHPackages                             szabogyula/full-calendar-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. szabogyula/full-calendar-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

szabogyula/full-calendar-bundle
===============================

Symfony2 integration with the library FullCalendar.js

v2.1.2(6y ago)0414MITPHP

Since Aug 16Pushed 6y ago1 watchersCompare

[ Source](https://github.com/szabogyula/FullCalendarBundle)[ Packagist](https://packagist.org/packages/szabogyula/full-calendar-bundle)[ Docs](https://github.com/ancarebeca/FullCalendarBundle)[ RSS](/packages/szabogyula-full-calendar-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (2)Versions (18)Used By (0)

FullCalendarBundle
------------------

[](#fullcalendarbundle)

[![Build Status](https://camo.githubusercontent.com/4c2772121d20ebc6e5f845b4c00be61798b387df5d03c860b168b5992dd5a7eb/68747470733a2f2f7472617669732d63692e6f72672f616e63617265626563612f46756c6c43616c656e64617242756e646c652e737667)](https://travis-ci.org/ancarebeca/FullCalendarBundle)

This bundle allow you to integrate [FullCalendar.js](http://fullcalendar.io/) library in your Symfony2.

Requirements
------------

[](#requirements)

- FullCalendar.js v2.3.2
- Symfony v2.3+
- PHP v5.3+
- PHPSpec

Installation
------------

[](#installation)

Installation process:

1. [Download FullCalendarBundle using composer](#download-fullcalendarbundle)
2. [Enable bundle](#enable-bundle)
3. [Create your Event class](#create-event)
4. [Create your listener](#create-listener)
5. [Add styles and scripts in your template](#styles-scripts)
6. [Add Routing](#routing)

### 1. Download FullCalendarBundle using composer

[](#1-download-fullcalendarbundle-using-composer-)

```
$> composer require ancarebeca/full-calendar-bundle
```

### 2. Enable bundle

[](#2-enable-bundle-)

```
// app/AppKernel.php

public function registerBundles()
{
    return array(
        // ...
        new AncaRebeca\FullCalendarBundle\FullCalendarBundle(),
    );
}
```

### 3. Create your Calendar Event class

[](#3-create-your-calendar-event-class-)

```
// src/AppBundle/Entity/EventCustom.php
