PHPackages                             claudejanz/yii2-fullcalendar - 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. claudejanz/yii2-fullcalendar

ActiveYii2-extension

claudejanz/yii2-fullcalendar
============================

an implementation of fullcalendar v3

1.0.0(9y ago)033BSD-4-ClausePHPPHP &gt;=5.4.0

Since Sep 7Pushed 8y ago1 watchersCompare

[ Source](https://github.com/claudejanz/yii2-fullcalendar)[ Packagist](https://packagist.org/packages/claudejanz/yii2-fullcalendar)[ RSS](/packages/claudejanz-yii2-fullcalendar/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (2)Used By (0)

Yii2 Fullcalendar
=================

[](#yii2-fullcalendar)

An implementation of [fullcalendar v3](https://fullcalendar.io). For more information [read documentation](https://fullcalendar.io/docs/).

[![Latest Stable Version](https://camo.githubusercontent.com/81c3c40aab416e5dabb3981b4c766211beb44dc41b8c5dbcaf59bc9658206bf5/68747470733a2f2f706f7365722e707567782e6f72672f636c617564656a616e7a2f796969322d66756c6c63616c656e6461722f762f737461626c65)](https://packagist.org/packages/claudejanz/yii2-fullcalendar) [![Total Downloads](https://camo.githubusercontent.com/c512ffbe6f07db6830967b534658b24dfb26387a5dbc852f6f769c1d47feea36/68747470733a2f2f706f7365722e707567782e6f72672f636c617564656a616e7a2f796969322d66756c6c63616c656e6461722f646f776e6c6f616473)](https://packagist.org/packages/claudejanz/yii2-fullcalendar) [![Latest Unstable Version](https://camo.githubusercontent.com/36f3e678d5b02029a64e85a8fbb0cf7a7dffd499319b1d7c80bd9e9919b9f4e9/68747470733a2f2f706f7365722e707567782e6f72672f636c617564656a616e7a2f796969322d66756c6c63616c656e6461722f762f756e737461626c65)](https://packagist.org/packages/claudejanz/yii2-fullcalendar) [![License](https://camo.githubusercontent.com/1d2efee3b6c53ba08fbc338b98642e72d75484fce086cb89d57623a55fe83671/68747470733a2f2f706f7365722e707567782e6f72672f636c617564656a616e7a2f796969322d66756c6c63616c656e6461722f6c6963656e7365)](https://packagist.org/packages/claudejanz/yii2-fullcalendar)

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist claudejanz/yii2-fullcalendar "*"

```

or add

```
"claudejanz/yii2-fullcalendar": "*"

```

to the require section of your `composer.json` file.

Usage
-----

[](#usage)

Once the extension is installed, simply use it in your view by:

```
echo \claudejanz\yii2fullcalendar\Fullcalendar::widget([
    'clientOptions' => [
        'events'        => \yii\helpers\Url::to(['site/events']),
        'weekends'      => false,
        'defaultView'   => 'agendaWeek',
        'editable'      => false,
        'header'        => [
            'left'  => 'prev,next today ',
            'right' => 'month,agendaWeek,agendaDay'
        ],
    ]
]);
```

And in your controller by:

```
public function actionEvents($start=NULL,$end=NULL,$timestamp=NULL){

    \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;

    $format = \DateTime::ISO8601;

    $events = [];

    $date = new \DateTime('now');

    $event = new \claudejanz\yii2fullcalendar\models\Event();
    $event->title = "An event";
    $event->start = $date->format($format);
    $date->add(new \DateInterval('PT1H'));
    $event->end = $date->format($format);

    $events[] = $event;

    return $events;
  }
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3534d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1180289?v=4)[Claude JANZ](/maintainers/claudejanz)[@claudejanz](https://github.com/claudejanz)

---

Tags

yii2extensionfullcalendar

### Embed Badge

![Health badge](/badges/claudejanz-yii2-fullcalendar/health.svg)

```
[![Health](https://phpackages.com/badges/claudejanz-yii2-fullcalendar/health.svg)](https://phpackages.com/packages/claudejanz-yii2-fullcalendar)
```

###  Alternatives

[philippfrenzel/yii2fullcalendar

Yii2 fullcalendar Widgets

135604.5k6](/packages/philippfrenzel-yii2fullcalendar)[skeeks/cms

SkeekS CMS — control panel and tools based on php framework Yii2

13825.6k47](/packages/skeeks-cms)[thiagotalma/yii2-fullcalendar

Widget for Yii Framework 2.0 to use FullCalendar

1777.7k](/packages/thiagotalma-yii2-fullcalendar)[kriss/yii2-calendar-schedule

Yii2 Calendar Schedule

107.9k](/packages/kriss-yii2-calendar-schedule)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
